Skip to content

Commit

Permalink
getting the json figured out
Browse files Browse the repository at this point in the history
  • Loading branch information
Aarsh2001 committed Nov 5, 2023
1 parent 6e32d0e commit c729a6c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/pilot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ jobs:
shell: python
run: |
import json
with open(./files.json, r) as f:
import os
home_dir = os.path.expanduser("~")
with open(home_dir + '/files.json', r) as f:
data = json.load(f)
print(data)
Expand Down

0 comments on commit c729a6c

Please sign in to comment.