Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Joaquin Amat committed Sep 7, 2023
1 parent a8217ea commit c98f680
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion extract_dependences.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,8 @@

with open("requirements.txt", mode='w') as fp:
for dependency in dependences_all:
fp.write(f"{dependency}\n")
fp.write(f"{dependency}\n")

if __name__ == "__main__":
import os
os.system("python extract_dependences.py")

0 comments on commit c98f680

Please sign in to comment.