Skip to content

Commit a2c0602

Browse files
committed
Ajdust indents in __main__.py
... so that the match the style of the other python code in this project
1 parent f4e243d commit a2c0602

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

startup_scripts/__main__.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
this_dir = dirname(abspath(__file__))
88

99
def filename(f):
10-
return f.name
10+
return f.name
1111

1212
with scandir(dirname(abspath(__file__))) as it:
13-
for f in sorted(it, key = filename):
14-
if f.name.startswith('__') or not f.is_file():
15-
continue
16-
17-
print(f"Running {f.path}")
18-
runpy.run_path(f.path)
13+
for f in sorted(it, key = filename):
14+
if f.name.startswith('__') or not f.is_file():
15+
continue
16+
17+
print(f"Running {f.path}")
18+
runpy.run_path(f.path)

0 commit comments

Comments
 (0)