We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac943ab commit 5885502Copy full SHA for 5885502
labview_fpga_hdl_tools/__main__.py
@@ -194,7 +194,8 @@ def handle_exception(e):
194
195
def main():
196
"""Main entry point for the command-line interface."""
197
- return cli(standalone_mode=False)
+ print(f"DEBUG: Arguments received: {sys.argv[1:]}")
198
+ return cli(args=sys.argv[1:], standalone_mode=False)
199
200
201
if __name__ == "__main__":
0 commit comments