Skip to content

Commit ac5f139

Browse files
pre-commit-ci[bot]chennes
authored andcommitted
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent fb97d00 commit ac5f139

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

PosthogFC.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,12 @@ def posthog_addon_list():
302302
if os.path.isdir(home_mod):
303303
mod_dirs = os.listdir(home_mod)
304304
for mod_dir in mod_dirs:
305-
if not ".backup" in mod_dir and mod_dir[0] != "." and mod_dir != "CVS" and mod_dir != "manifest.json":
305+
if (
306+
not ".backup" in mod_dir
307+
and mod_dir[0] != "."
308+
and mod_dir != "CVS"
309+
and mod_dir != "manifest.json"
310+
):
306311
mods.append(mod_dir.lower())
307312
posthog.capture(
308313
distinct_id=posthog_id,

0 commit comments

Comments
 (0)