Skip to content

Commit

Permalink
core: fix "not" typo in template export args
Browse files Browse the repository at this point in the history
  • Loading branch information
ericoporto committed Nov 24, 2024
1 parent a1fdd8e commit 9521ad0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/agstoolbox/core/cmdline/cmdline.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ def at_cmd_export(args):
target_name: str = str()
prj_path: str = args.PROJECT_PATH
out_dir: str = args.OUT_DIR
force_editor: bool = not args.force_editor
force_editor: bool = args.force_editor
if args.sub_export == 'script':
target_name = args.MODULE_NAME
else:
Expand Down

0 comments on commit 9521ad0

Please sign in to comment.