Skip to content

Commit 1e718fe

Browse files
committed
Fixed black formatting
1 parent 4503f87 commit 1e718fe

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

stumpy/__init__.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -147,9 +147,7 @@
147147
with open(filepath, encoding="utf8") as f:
148148
file_contents = f.read()
149149
module = ast.parse(file_contents)
150-
class_definitions = [
151-
node for node in module.body if isinstance(node, ast.ClassDef)
152-
]
150+
class_definitions = [node for node in module.body if isinstance(node, ast.ClassDef)]
153151
for cd in class_definitions:
154152
if cd.name == "gpu_stimp":
155153
gpu_stimp.__doc__ = ast.get_docstring(cd)

0 commit comments

Comments
 (0)