Skip to content

Commit c0526fd

Browse files
committed
Fix exception broken by black formatting #143
1 parent b11893f commit c0526fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sasctl/pzmm/write_json_files.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1023,9 +1023,9 @@ def create_requirements_json(cls, model_path=Path.cwd()):
10231023
"command": f"pip install {package}=={version}",
10241024
}
10251025
)
1026-
with open(
1026+
with open( # skipcq: PTC-W6004
10271027
Path(model_path) / "requirements.json", "w"
1028-
) as file: # skipcq: PTC-W6004 FLK-E501
1028+
) as file:
10291029
file.write(json.dumps(json_dicts, indent=4))
10301030

10311031
return json_dicts

0 commit comments

Comments
 (0)