From 52e78e47dbe2ba38431e0d62afd4c48daa6acaeb Mon Sep 17 00:00:00 2001 From: Rahul choudhary <67880025+mrdarwin4921@users.noreply.github.com> Date: Fri, 2 Oct 2020 13:38:10 +0530 Subject: [PATCH] Update Pikachu.py in line 557 turtle.title('Pikachu') i m just remove this line and its work properly --- Pikachu.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Pikachu.py b/Pikachu.py index 90f71c0..f81dcbb 100644 --- a/Pikachu.py +++ b/Pikachu.py @@ -554,11 +554,11 @@ def start(self): def main(): print('Painting the Pikachu... ') turtle.screensize(800, 600) - turtle.title('Pikachu') + pikachu = Pikachu() pikachu.start() turtle.mainloop() if __name__ == '__main__': - main() \ No newline at end of file + main()