Skip to content

Commit

Permalink
make format
Browse files Browse the repository at this point in the history
  • Loading branch information
Miłosz Skaza committed Jan 25, 2024
1 parent 6d8ffe5 commit 1078eb4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion ctfcli/cli/challenges.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@
from ctfcli.core.challenge import Challenge
from ctfcli.core.config import Config
from ctfcli.core.deployment import get_deployment_handler
from ctfcli.core.exceptions import ChallengeException, LintException, RemoteChallengeNotFound
from ctfcli.core.exceptions import (
ChallengeException,
LintException,
RemoteChallengeNotFound,
)
from ctfcli.utils.git import get_git_repo_head_branch

log = logging.getLogger("ctfcli.cli.challenges")
Expand Down
4 changes: 2 additions & 2 deletions ctfcli/core/challenge.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import subprocess
from os import PathLike
from pathlib import Path
from typing import Any, Dict, List, Optional, Tuple, Union
from typing import Any, Dict, List, Tuple, Union

import click
import yaml
Expand All @@ -16,8 +16,8 @@
RemoteChallengeNotFound,
)
from ctfcli.core.image import Image
from ctfcli.utils.tools import strings
from ctfcli.utils.hashing import hash_file
from ctfcli.utils.tools import strings


def str_presenter(dumper, data):
Expand Down

0 comments on commit 1078eb4

Please sign in to comment.