PYADPT-87 - "Drop usless `__main__` part form module"

PYADPT-100
heck 2020-10-27 19:58:39 +01:00
parent 8676fe4a82
commit 2b5793ff63
1 changed files with 1 additions and 10 deletions

View File

@ -56,13 +56,4 @@ def notify_handshake(me, partner, signal):
print("overwrite this method")
# Executed when run as script
def main():
print("I am being run as a script")
# MAIN
if __name__ == "__main__":
main()
else:
init()
init()