Skip to content

Commit

Permalink
Reformat with Black v23
Browse files Browse the repository at this point in the history
  • Loading branch information
ctrueden committed Feb 16, 2023
1 parent b1bc26b commit fcaf307
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/jgo/jgo.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ def __init__(self, argv):


class Endpoint:

VERSION_RELEASE = "RELEASE"
VERSION_LATEST = "LATEST"
VERSION_MANAGED = "MANAGED"
Expand Down Expand Up @@ -388,7 +387,6 @@ def jgo_parser(log_levels=_default_log_levels):


def _jgo_main(argv=sys.argv[1:], stdout=None, stderr=None):

LOG_FORMAT = "%(levelname)s %(asctime)s: %(message)s"

if not ("-q" in argv or "--quiet" in argv):
Expand Down Expand Up @@ -540,7 +538,6 @@ def resolve_dependencies(
shortcuts={},
verbose=0,
):

endpoint_strings = split_endpoint_string(endpoint_string)
endpoints = endpoints_from_strings(endpoint_strings, shortcuts=shortcuts)
primary_endpoint = endpoints[0]
Expand Down Expand Up @@ -680,7 +677,6 @@ def resolve_dependencies(
and not re.match(".*\\[DEBUG\\]", line)
and not re.match(".*:provided", line)
):

_logger.debug("Relevant mvn output: %s", line)

split_line = info_regex.sub("", line).split(":")
Expand Down Expand Up @@ -722,7 +718,6 @@ def resolve_dependencies(


def run(parser, argv=sys.argv[1:], stdout=None, stderr=None):

config = default_config()
if "--ignore-jgorc" not in argv:
config_file = pathlib.Path.home() / ".jgorc"
Expand Down

0 comments on commit fcaf307

Please sign in to comment.