Skip to content

Commit

Permalink
Fix executables --version
Browse files Browse the repository at this point in the history
  • Loading branch information
bergercookie committed Aug 15, 2024
1 parent 7ae95f2 commit 9f70769
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions syncall/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import click
from bubop import format_list, logger

from syncall import __version__
from syncall import version
from syncall.app_utils import (
determine_app_config_fname,
error_and_exit,
Expand Down Expand Up @@ -470,7 +470,7 @@ def decorator(f):
(_opt_confirm,),
(
click.version_option,
__version__,
version,
),
(_opt_pdb_on_error,),
(_opt_list_combinations, side_A_name, side_B_name),
Expand Down

0 comments on commit 9f70769

Please sign in to comment.