Skip to content

Commit

Permalink
add argparse module
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefal committed Jun 13, 2024
1 parent 0797cca commit d5724f2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions web_app/gnss_rproxy_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
from gevent import monkey
monkey.patch_all()
import requests
import argparse

from RTKBaseConfigManager import RTKBaseConfigManager
#from dotenv import load_dotenv # pip package python-dotenv
Expand Down Expand Up @@ -173,6 +174,7 @@ def arg_parse():
return args

if __name__ == "__main__":
args=arg_parse()
try:
#check if authentification is required
if not rtkbaseconfig.get_web_authentification():
Expand Down

0 comments on commit d5724f2

Please sign in to comment.