Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/openmc_data/convert/convert_fendl.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ class CustomFormatter(
help="Directory to create new library in",
)
parser.add_argument(
"--download", action="store_true", help="Download files from IAEA-NDS"
"--download", action="store_true", help="Download files"
)
parser.add_argument(
"--no-download",
dest="download",
action="store_false",
help="Do not download files from IAEA-NDS",
help="Do not download files",
)
parser.add_argument("--extract", action="store_true", help="Extract tar/zip files")
parser.add_argument(
Expand Down
4 changes: 2 additions & 2 deletions src/openmc_data/convert/convert_jeff32.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ class CustomFormatter(
help="Directory to create new library in",
)
parser.add_argument(
"--download", action="store_true", help="Download files from OECD-NEA"
"--download", action="store_true", help="Download files files"
)
parser.add_argument(
"--no-download",
dest="download",
action="store_false",
help="Do not download files from OECD-NEA",
help="Do not download files files",
)
parser.add_argument("--extract", action="store_true", help="Extract tar/zip files")
parser.add_argument(
Expand Down
4 changes: 2 additions & 2 deletions src/openmc_data/convert/convert_jeff33.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ class CustomFormatter(
help="Directory to create new library in",
)
parser.add_argument(
"--download", action="store_true", help="Download tarball from OECD-NEA"
"--download", action="store_true", help="Download files"
)
parser.add_argument(
"--no-download",
dest="download",
action="store_false",
help="Do not download tarball from OECD-NEA",
help="Do not download files",
)
parser.add_argument("--extract", action="store_true", help="Extract zip files")
parser.add_argument(
Expand Down
4 changes: 2 additions & 2 deletions src/openmc_data/convert/convert_tendl.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ class CustomFormatter(
default=None,
help="Directory to create new library in",
)
parser.add_argument("--download", action="store_true", help="Download files from PSI")
parser.add_argument("--download", action="store_true", help="Download files")
parser.add_argument(
"--no-download",
dest="download",
action="store_false",
help="Do not download files from PSI",
help="Do not download files",
)
parser.add_argument("--extract", action="store_true", help="Extract tar/zip files")
parser.add_argument(
Expand Down
4 changes: 2 additions & 2 deletions src/openmc_data/generate/generate_cendl.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ class CustomFormatter(argparse.ArgumentDefaultsHelpFormatter,
parser.add_argument('-d', '--destination', type=Path, default=None,
help='Directory to create new library in')
parser.add_argument('--download', action='store_true',
help='Download files from OECD-NEA')
help='Download files')
parser.add_argument('--no-download', dest='download', action='store_false',
help='Do not download files from OECD-NEA')
help='Do not download files')
parser.add_argument('--extract', action='store_true',
help='Extract tar/zip files')
parser.add_argument('--no-extract', dest='extract', action='store_false',
Expand Down
4 changes: 2 additions & 2 deletions src/openmc_data/generate/generate_endf.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ class CustomFormatter(argparse.ArgumentDefaultsHelpFormatter,
parser.add_argument('-d', '--destination', type=Path,
help='Directory to create new library in')
parser.add_argument('--download', action='store_true',
help='Download zip files from NNDC')
help='Download files')
parser.add_argument('--no-download', dest='download', action='store_false',
help='Do not download zip files from NNDC')
help='Do not download files')
parser.add_argument('--extract', action='store_true',
help='Extract zip files')
parser.add_argument('--no-extract', dest='extract', action='store_false',
Expand Down
4 changes: 2 additions & 2 deletions src/openmc_data/generate/generate_fendl.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ class CustomFormatter(argparse.ArgumentDefaultsHelpFormatter,
parser.add_argument('-d', '--destination', type=Path, default=None,
help='Directory to create new library in')
parser.add_argument('--download', action='store_true',
help='Download files from JAEA')
help='Download files')
parser.add_argument('--no-download', dest='download', action='store_false',
help='Do not download files from JAEA')
help='Do not download files')
parser.add_argument('--extract', action='store_true',
help='Extract tar/zip files')
parser.add_argument('--no-extract', dest='extract', action='store_false',
Expand Down
4 changes: 2 additions & 2 deletions src/openmc_data/generate/generate_jeff33.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ class CustomFormatter(argparse.ArgumentDefaultsHelpFormatter,
"'earliest' for backwards compatibility or 'latest' for "
"performance")
parser.add_argument('--download', action='store_true',
help='Download zip files from NNDC')
help='Download files')
parser.add_argument('--no-download', dest='download', action='store_false',
help='Do not download zip files from NNDC')
help='Do not download files')
parser.add_argument('--use-tmpdir', dest='tmpdir', action='store_true',
help='Use temporary directory while processing')
parser.add_argument('--no-use-tmpdir', dest='tmpdir', action='store_false',
Expand Down
4 changes: 2 additions & 2 deletions src/openmc_data/generate/generate_jendl.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ class CustomFormatter(argparse.ArgumentDefaultsHelpFormatter,
parser.add_argument('-d', '--destination', type=Path, default=None,
help='Directory to create new library in')
parser.add_argument('--download', action='store_true',
help='Download files from JAEA')
help='Download files')
parser.add_argument('--no-download', dest='download', action='store_false',
help='Do not download files from JAEA')
help='Do not download files')
parser.add_argument('--extract', action='store_true',
help='Extract tar/zip files')
parser.add_argument('--no-extract', dest='extract', action='store_false',
Expand Down
Loading