Skip to content

Commit

Permalink
Fixing lints
Browse files Browse the repository at this point in the history
  • Loading branch information
Example User committed Jul 13, 2022
1 parent 34a335b commit 70173a3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion conda_lock/src_parser/lockfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,9 @@ def write_section(text: str) -> None:
yaml.dump(
{
"version": Lockfile.version,
**json.loads(content.json(by_alias=True, exclude_unset=True, exclude_none=True)),
**json.loads(
content.json(by_alias=True, exclude_unset=True, exclude_none=True)
),
},
f,
)

0 comments on commit 70173a3

Please sign in to comment.