Skip to content

Commit f0dea6a

Browse files
committed
Fix: flake8
1 parent 1cc02b9 commit f0dea6a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

kaleidoscope/operators/randomizeop.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,6 @@ def uuid(self) -> str:
195195
"""
196196
Returns a UUID constructed from the basename of the source file.
197197
"""
198-
return f"{uuid.uuid5(
199-
uuid.NAMESPACE_URL, self._args.source_file.stem
200-
)}"
198+
return (
199+
f"{uuid.uuid5(uuid.NAMESPACE_URL, self._args.source_file.stem)}"
200+
)

0 commit comments

Comments
 (0)