Skip to content

Commit da87acc

Browse files
committed
Add entry point and fix typo in command-line
1 parent 275a002 commit da87acc

File tree

2 files changed

+4
-15
lines changed

2 files changed

+4
-15
lines changed

.github/workflows/publish-docs-on-release.yml

-14
This file was deleted.

src/diffpy/snmf/stretchednmfapp.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def create_parser():
2525
help="The directory where the results will be written. Defaults to '<input_directory>/snmf_results'.",
2626
)
2727
parser.add_argument(
28-
"t",
28+
"-t",
2929
"--data-type",
3030
type=str,
3131
default=None,
@@ -58,3 +58,6 @@ def main():
5858
variables = initialize_variables(lifted_input_data, args.number_of_components, args.data_type)
5959
components = initialize_components(variables["number_of_components"], variables["number_of_signals"], grid)
6060
return components
61+
62+
if __name__ == "__main__":
63+
main()

0 commit comments

Comments
 (0)