Skip to content

Commit a1d49be

Browse files
committed
Tell flake8 to shut up about long lines.
1 parent 6b400bc commit a1d49be

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/sumo/wrapper/sumo_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ def get(self, path: str, params: dict = None) -> dict:
201201
follow_redirects = False
202202
if (
203203
re.match(
204-
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$",
204+
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
205205
path,
206206
)
207207
is not None
@@ -438,7 +438,7 @@ async def get_async(self, path: str, params: dict = None):
438438
follow_redirects = False
439439
if (
440440
re.match(
441-
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$",
441+
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
442442
path,
443443
)
444444
is not None

0 commit comments

Comments
 (0)