14 lines
238 B
Python
14 lines
238 B
Python
from PfandApplication import main
|
|
|
|
"""
|
|
|
|
If the function launch gets called with
|
|
False -> No autoupdates will be run
|
|
True -> Autoupdates will be run
|
|
|
|
"""
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main.PfandCalculator.launch(True) # By default True
|