diff --git a/robot/__init__.py b/robot/__init__.py index d931080..6360460 100644 --- a/robot/__init__.py +++ b/robot/__init__.py @@ -1 +1 @@ -from robot import * \ No newline at end of file +from robot import Robot diff --git a/square.py b/square.py index 8a9ee22..473582f 100644 --- a/square.py +++ b/square.py @@ -1,7 +1,8 @@ import robot def main(): - pass + turn_time = 10 + if __name__ == "__main__": main()