Skip to content

Commit

Permalink
remove --no-eval option
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshix-1 committed Oct 1, 2024
1 parent 1cda1b2 commit 811fe95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions typed_stream/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,15 +273,15 @@ def main() -> str | None: # noqa: C901
arg_parser.add_argument("--debug", action="store_true")
arg_parser.add_argument("--bytes", action="store_true")
arg_parser.add_argument("--keep-ends", action="store_true")
arg_parser.add_argument("--no-eval", action="store_true")
# arg_parser.add_argument("--no-eval", action="store_true")
arg_parser.add_argument("actions", nargs="+")

args = arg_parser.parse_args()
options = Options(
debug=bool(args.debug),
bytes=bool(args.bytes),
keep_ends=bool(args.keep_ends),
no_eval=bool(args.no_eval),
no_eval=False,
actions=tuple(map(str, args.actions)),
)
if options.actions and options.actions[0] == "help":
Expand Down

0 comments on commit 811fe95

Please sign in to comment.