Skip to content
This repository was archived by the owner on Feb 3, 2026. It is now read-only.

Commit b9c4013

Browse files
committed
[Scripts] fix file lister
1 parent a16a827 commit b9c4013

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/python_file_lister.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def _explore_module(package_entry, root=""):
3333
def _get_octobot_packages(packages_path):
3434
for entry in os.scandir(packages_path):
3535
if (entry.name.startswith(OCTOBOT_PREFIX) or entry.name in OTHER_MODULES) \
36-
and not entry.name.endswith("-info"):
36+
and not entry.name.endswith("-info") and not entry.name.endswith(".hcl"):
3737
yield entry
3838

3939

0 commit comments

Comments
 (0)