We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4503f87 commit 1e718feCopy full SHA for 1e718fe
stumpy/__init__.py
@@ -147,9 +147,7 @@
147
with open(filepath, encoding="utf8") as f:
148
file_contents = f.read()
149
module = ast.parse(file_contents)
150
- class_definitions = [
151
- node for node in module.body if isinstance(node, ast.ClassDef)
152
- ]
+ class_definitions = [node for node in module.body if isinstance(node, ast.ClassDef)]
153
for cd in class_definitions:
154
if cd.name == "gpu_stimp":
155
gpu_stimp.__doc__ = ast.get_docstring(cd)
0 commit comments