Skip to content

Commit

Permalink
Refactor entrypoint.py to remove unnecessary code and improve file li…
Browse files Browse the repository at this point in the history
…sting
  • Loading branch information
cedricdcc committed Sep 23, 2024
1 parent 3c2b42f commit cc7d5d5
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions entrypoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,13 @@ def main():
# list all files in the directory
files = os.listdir(pd)
print(files)
#print cwd

# print cwd
print(os.getcwd())

# list the files in the current directory
print(os.listdir(os.getcwd()))

"""
# get all inputs from the action
rohub_user = (
Expand Down

0 comments on commit cc7d5d5

Please sign in to comment.