Skip to content

Commit 1f4cd17

Browse files
committed
tests: blacken common.py
1 parent c3457da commit 1f4cd17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def random_input_data():
151151
for root, dirs, files in os.walk(os.path.dirname(__file__)):
152152
# We filter out __pycache__ because there is a race between another
153153
# process writing cache files and us reading them.
154-
dirs[:] = list(sorted(d for d in dirs if d != '__pycache__'))
154+
dirs[:] = list(sorted(d for d in dirs if d != "__pycache__"))
155155
for f in sorted(files):
156156
try:
157157
with open(os.path.join(root, f), "rb") as fh:

0 commit comments

Comments
 (0)