Skip to content

Commit

Permalink
Style fixes by Black
Browse files Browse the repository at this point in the history
  • Loading branch information
Adamtaranto authored and github-actions[bot] committed Jan 4, 2025
1 parent a39a3a0 commit 90ebc72
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions src/jcvi/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,14 @@
import argparse
from . import __version__


def main():
parser = argparse.ArgumentParser()
parser.add_argument('--version', action='version',
version=f'%(prog)s {__version__}')
parser.add_argument(
"--version", action="version", version=f"%(prog)s {__version__}"
)
args = parser.parse_args()

if __name__ == '__main__':
main()

if __name__ == "__main__":
main()

0 comments on commit 90ebc72

Please sign in to comment.