Skip to content

Commit

Permalink
chore: Fix python linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jmrt47 committed Nov 22, 2024
1 parent 3c515d6 commit ccb1348
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions evergreen.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,9 +172,9 @@ def main(): # pragma: no cover
if dependabot_file is None:
print("\tNo (new) compatible package manager found")
continue
else:
dependabot_file = yaml.dump(dependabot_file, stream)
dependabot_file = stream.getvalue()

yaml.dump(dependabot_file, stream)
dependabot_file = stream.getvalue()

# If dry_run is set, just print the dependabot file
if dry_run:
Expand Down

0 comments on commit ccb1348

Please sign in to comment.