Skip to content

Commit

Permalink
Tell flake8 to shut up about long lines.
Browse files Browse the repository at this point in the history
  • Loading branch information
rwiker committed Nov 14, 2024
1 parent 6b400bc commit a1d49be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sumo/wrapper/sumo_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def get(self, path: str, params: dict = None) -> dict:
follow_redirects = False
if (
re.match(
r"^/objects\('[0-9a-fA-F-]{8}-[0-9a-fA-F-]{4}-[0-9a-fA-F-]{4}-[0-9a-fA-F-]{4}-[0-9a-fA-F-]{12}'\)/blob$",
r"^/objects\('[0-9a-fA-F-]{8}-[0-9a-fA-F-]{4}-[0-9a-fA-F-]{4}-[0-9a-fA-F-]{4}-[0-9a-fA-F-]{12}'\)/blob$", # noqa: E501
path,
)
is not None
Expand Down Expand Up @@ -438,7 +438,7 @@ async def get_async(self, path: str, params: dict = None):
follow_redirects = False
if (
re.match(
r"^/objects\('[0-9a-fA-F-]{8}-[0-9a-fA-F-]{4}-[0-9a-fA-F-]{4}-[0-9a-fA-F-]{4}-[0-9a-fA-F-]{12}'\)/blob$",
r"^/objects\('[0-9a-fA-F-]{8}-[0-9a-fA-F-]{4}-[0-9a-fA-F-]{4}-[0-9a-fA-F-]{4}-[0-9a-fA-F-]{12}'\)/blob$", # noqa: E501
path,
)
is not None
Expand Down

0 comments on commit a1d49be

Please sign in to comment.