minor fixes

This commit is contained in:
DavHau 2021-09-10 10:15:44 +02:00
parent 7ef59b51d5
commit 72bbad7d9d
2 changed files with 1 additions and 4 deletions

View File

@ -158,9 +158,6 @@ Potery uses `pyproject.toml` and `poetry.lock` to lock dependencies
// (not relevant for building)
"producedBy": "translator-poetry-1",
// target system
"system": "x86_64-linux",
// dependency graph of the packages
"dependencyGraph": {
"requests": [

View File

@ -71,7 +71,7 @@ def main():
# dump generic lock to stdout (json)
with open(output_file, 'w') as lock:
json.dump(generic_lock, lock, indent=2)2
json.dump(generic_lock, lock, indent=2)
if __name__ == "__main__":