Skip to content

Commit

Permalink
Ruff formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
TheByronHimes committed Feb 11, 2025
1 parent 901e788 commit 345201e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/update_config_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ def get_config_class():
stdout=subprocess.PIPE,
stderr=subprocess.DEVNULL,
) as process:
assert (
process.wait() == 0 and process.stdout is not None
), "Failed to get package name."
assert process.wait() == 0 and process.stdout is not None, (
"Failed to get package name."
)
package_name = process.stdout.read().decode("utf-8").strip("\n")

# import the Config class from the microservice package:
Expand Down

0 comments on commit 345201e

Please sign in to comment.