Skip to content
This repository has been archived by the owner on Oct 5, 2024. It is now read-only.

Commit

Permalink
fixed incorrect path
Browse files Browse the repository at this point in the history
  • Loading branch information
mickoissicko committed Feb 3, 2024
1 parent 11c1ac5 commit 50aa4f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pwd.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

def main():
current_working_directory = os.getcwd()
with open('../config/working.directory', 'w') as file:
with open('config/working.directory', 'w') as file:
file.write(current_working_directory)

if __name__ == "__main__":
Expand Down

0 comments on commit 50aa4f5

Please sign in to comment.