Skip to content

Commit

Permalink
flatten if-tree
Browse files Browse the repository at this point in the history
  • Loading branch information
mara004 committed Oct 25, 2023
1 parent 6060bc7 commit da6b3a7
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions setupsrc/pypdfium2_setup/craft_packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,13 +213,12 @@ def main():
with ArtifactStash():
if args.parser == P_PYPI:
main_pypi(args)
elif args.parser.startswith("conda"):
if args.parser == P_CONDA_BUNDLE:
main_conda_bundle(args)
elif args.parser == P_CONDA_RAW:
main_conda_raw(args)
elif args.parser == P_CONDA_HELPERS:
main_conda_helpers(args)
elif args.parser == P_CONDA_BUNDLE:
main_conda_bundle(args)
elif args.parser == P_CONDA_RAW:
main_conda_raw(args)
elif args.parser == P_CONDA_HELPERS:
main_conda_helpers(args)


if __name__ == '__main__':
Expand Down

0 comments on commit da6b3a7

Please sign in to comment.