Skip to content

Commit

Permalink
fix: removed unreachable code (#584)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shubham0324 committed Apr 2, 2021
1 parent 1fca356 commit d727d60
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions scripts/logcrawler.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,6 @@ def get_filepaths():
filepaths = []
for folder, dirs, files in os.walk(log_dir):
print("Crawling folder: " + folder)

if False:
print("Files: ")
for filename in files:
print(" - " + filename)

filepaths.extend([os.path.join(folder, filename) for filename in files])
return filepaths

Expand Down

0 comments on commit d727d60

Please sign in to comment.