Obvious mistake being fixed

This commit is contained in:
fsan 2023-06-01 01:33:00 +00:00
parent 1b1ee625b8
commit 31d0bdb999
1 changed files with 2 additions and 1 deletions

3
cvt.py
View File

@ -1,6 +1,7 @@
import yaml
import sys
with open("environment.yaml") as file_handle:
with open(sys.argv[1]) as file_handle:
environment_data = yaml.load(file_handle)
with open("requirements.txt", "w") as file_handle: