Skip to content

Commit

Permalink
fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Michal Hecko committed Oct 29, 2024
1 parent 2e7ebc7 commit 4b81e73
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions leapp/actors/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@

try:
# Compiled versions if available, for speed
from yaml import CSafeLoader as SafeLoader, CSafeDumper as SafeDumper
from yaml import CSafeLoader as SafeLoader
except ImportError:
from yaml import SafeLoader, SafeDumper
from yaml import SafeLoader


_ACTOR_CONFIG = None
Expand All @@ -45,8 +45,9 @@
class SchemaError(Exception):
"""
Raised when actors use conflicting schemas.

For example, one schema wants `section.field` to be an integer and other schema wants `section.field` to be a string.

For example, one schema wants `section.field` to be an integer and other schema wants
`section.field` to be a string.
"""


Expand Down

0 comments on commit 4b81e73

Please sign in to comment.