Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
reschandreas committed Jan 6, 2024
1 parent 4aef3d2 commit 4b47b4b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cli/generators/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from docker.models.containers import Container # type: ignore
from docker.types.daemon import CancellableStream # type: ignore

from classes.generated.definitions import ScriptAction, Repository, Target, Action
from classes.generated.definitions import ScriptAction, Repository, Target
from classes.generated.windfile import WindFile
from classes.input_settings import InputSettings
from classes.output_settings import OutputSettings
Expand Down
2 changes: 1 addition & 1 deletion cli/test/test_env_replacement.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def generate_and_check_if_repository_variables_are_set(
if index > 0:
var_name += f"_{index}"
self.assertIn(f"{var_name} = '{repo.url}'", result)
self.assertIn("url: \"${" + var_name + "}\"", result)
self.assertIn('url: "${' + var_name + '}"', result)
index += 1
elif isinstance(gen, CliGenerator):
for repo in windfile.repositories.values():
Expand Down

0 comments on commit 4b47b4b

Please sign in to comment.