Skip to content

Commit 92ee27c

Browse files
committed
Fix lint
1 parent 6b2ae0b commit 92ee27c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ctfcli/cli/challenges.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,7 @@ def sync(self, challenge: str = None, ignore: Union[str, Tuple[str]] = ()) -> in
653653
if isinstance(ignore, str):
654654
ignore = (ignore,)
655655

656-
config = Config()
656+
_config = Config()
657657
remote_challenges = Challenge.load_installed_challenges()
658658

659659
failed_syncs = []
@@ -718,7 +718,7 @@ def deploy(
718718
else:
719719
skipped_deployments.append(challenge_instance)
720720

721-
config = Config()
721+
_config = Config()
722722
with click.progressbar(deployable_challenges, label="Deploying challenges") as challenges:
723723
for challenge_instance in challenges:
724724
click.echo()

0 commit comments

Comments
 (0)