Skip to content

Commit c2ef2e5

Browse files
debug: print command args
1 parent 3bff344 commit c2ef2e5

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

src/my_torch/tools/my_torch_analyzer.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77

88

99
def main():
10+
print("@@@", sys.argv)
11+
1012
parser = argparse.ArgumentParser(
1113
description="MY_TORCH Chess Position Analyzer",
1214
formatter_class=argparse.RawDescriptionHelpFormatter,

src/my_torch/tools/my_torch_generator.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77

88
def main():
9+
print("@@@", sys.argv)
10+
911
parser = argparse.ArgumentParser(
1012
description="Generate neural networks from configuration files",
1113
formatter_class=argparse.RawDescriptionHelpFormatter,

0 commit comments

Comments
 (0)