xxxxxxxxxx
from otherfile import TheClass
theclass = TheClass()
# if you want to return the output of run
return theclass.run()
# if you want to return run itself to be used later
return theclass.run
###Change the end of comm system to:
if __name__ == '__main__':
a_game = Comm_system()
a_game.run()