Fix pre-commit

This commit is contained in:
Daniel A. Wozniak 2025-01-01 03:00:35 -07:00 committed by Daniel Wozniak
parent 1fb68df156
commit 9bb624db5a
2 changed files with 4 additions and 2 deletions

View file

@ -100,4 +100,6 @@ def test_help_log(salt_cli):
ret = salt_cli.run("--help")
count = 0
# This can be dependent on COLUMNS environment variable
assert "sensitive data: all, debug, garbage, profile, trace" in " ".join(ret.stdout.split())
assert "sensitive data: all, debug, garbage, profile, trace" in " ".join(
ret.stdout.split()
)

View file

@ -25,7 +25,7 @@ def configure_loader_modules(minion_opts, tmp_path):
def winrepo_remotes(minion_opts):
remotes = set()
# Legacy repo has been archived as of September 2024
# remotes.update(minion_opts.get("winrepo_remotes", []))
remotes.update(minion_opts.get("winrepo_remotes", []))
remotes.update(minion_opts.get("winrepo_remotes_ng", []))
return remotes