Skip to content

Commit

Permalink
Format code for pre-commit checks to pass
Browse files Browse the repository at this point in the history
  • Loading branch information
FaustinCarter committed May 24, 2024
1 parent 0d1a1cc commit ca5cca6
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion grayskull/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,10 @@ def init_parser():
"--pypi-metadata-url",
default=DEFAULT_PYPI_META_URL,
dest="url_pypi_metadata",
help="Pypi url server metadata endpoint; will be appended with '{pkgname}/json'",
help=(
"Pypi url server metadata endpoint;"
+ "will be appended with '{pkgname}/json'"
),
)
pypi_parser.add_argument(
"--pypi-mirror-url",
Expand Down Expand Up @@ -313,7 +316,12 @@ def generate_recipes_from_list(list_pkgs, args):
# TODO: Remove before 3.0 release
if args.url_pypi_metadata_deprecated and args.url_pypi_metadata:
raise RuntimeError(
<<<<<<< HEAD
"--pypi-url is deprecated in favor of --pypi-url-metadata and may not be passed in conjunction with --pypi-url-metadata"
=======
"--pypi-url is deprecated in favor of --pypi-url-metadata "
+ "and may not be passed in conjunction with --pypi-url-metadata"
>>>>>>> 72a467c (Format code for pre-commit checks to pass)
)

# TODO: Remove before 3.0 release
Expand Down

0 comments on commit ca5cca6

Please sign in to comment.