Skip to content

Commit

Permalink
Attempt options fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-quintero committed Nov 24, 2024
1 parent c239f89 commit eee9c25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nextmv/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def __init__(self, *parameters: Parameter): # noqa: C901
# The ipyernel uses a `-f` argument by default that it passes to the
# execution. We don’t want to ignore this argument because we get an
# error. Fix source: https://stackoverflow.com/a/56349168
parser.add_argument("-f", "--fff", help="a dummy argument to fool ipython", default="1")
parser.add_argument("-f", "--f" "--fff", help="a dummy argument to fool ipython", default="1")
args = parser.parse_args()

for arg in vars(args):
Expand Down

0 comments on commit eee9c25

Please sign in to comment.