Skip to content

Commit a7094a1

Browse files
committed
lint
1 parent 3867b8c commit a7094a1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test_examples.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,9 @@ def print_callback(s: str) -> str:
259259
s = re.sub(r'datetime\.datetime\(.+?\)', 'datetime.datetime(...)', s, flags=re.DOTALL)
260260
s = re.sub(r'\d\.\d{4,}e-0\d', '0.0...', s)
261261
s = re.sub(r'datetime.date\(', 'date(', s)
262-
s = re.sub(r"run_id='[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}'", "run_id='...'", s)
262+
s = re.sub(
263+
r"run_id='[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}'", "run_id='...'", s
264+
)
263265
return s
264266

265267

0 commit comments

Comments
 (0)