Skip to content
Snippets Groups Projects
Commit 9642b180 authored by Robin Mueller's avatar Robin Mueller
Browse files

pip conformity

parent aa8142d8
No related branches found
No related tags found
No related merge requests found
......@@ -40,6 +40,7 @@ from utility.obsw_args_parser import parse_input_arguments
LOGGER = get_logger()
def run_tmtc_client(use_gui: bool):
"""
Main method, reads input arguments, sets global variables and start TMTC handler.
......
......@@ -27,8 +27,10 @@ Run this file with the -h flag to display options.
"""
from core.tmtc_client_core import run_tmtc_client
def main():
run_tmtc_client(False)
if __name__ == "__main__":
main()
......@@ -26,8 +26,10 @@ limitations under the License.
"""
from core.tmtc_client_core import run_tmtc_client
def main():
run_tmtc_client(True)
if __name__ == "__main__":
main()
\ No newline at end of file
main()
Subproject commit 18ff3d7642c34718bf5178cb5ead301fc7c43075
Subproject commit 1f4f33f92ae5b6abe92e89dedf7041ebdee4b63c
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment