Skip to content

Commit 383cd86

Browse files
committed
xx
1 parent d742a11 commit 383cd86

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

main.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,11 @@ def main():
2020
try:
2121
files = []
2222
for p in Path("./").iterdir():
23-
files.append(p.name)
24-
all_files = ",".join(files)
25-
log_message(f"FILES_LISTING_1={all_files}")
23+
#files.append(p.name)
24+
log_message(f"{p.name}")
25+
26+
#all_files = ",".join(files)
27+
#log_message(f"FILES_LISTING_1={all_files}")
2628

2729
log_message("MY_VAR1=foo")
2830
log_message("MY_VAR2=bar")

0 commit comments

Comments
 (0)