Skip to content

Commit 6ff9f01

Browse files
committed
Change create-plots default to -k 26 -n 1
1 parent 32ba687 commit 6ff9f01

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cmds/create_plots.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ def main():
2121
key_config_filename = config_path_for_filename(root_path, "keys.yaml")
2222

2323
parser = argparse.ArgumentParser(description="Chia plotting script.")
24-
parser.add_argument("-k", "--size", help="Plot size", type=int, default=20)
24+
parser.add_argument("-k", "--size", help="Plot size", type=int, default=26)
2525
parser.add_argument(
26-
"-n", "--num_plots", help="Number of plots", type=int, default=10
26+
"-n", "--num_plots", help="Number of plots", type=int, default=1
2727
)
2828
parser.add_argument("-i", "--index", help="First plot index", type=int, default=0)
2929
parser.add_argument(

0 commit comments

Comments
 (0)