Skip to content
Snippets Groups Projects
Commit c0b3cb04 authored by Anon's avatar Anon Committed by iggy
Browse files

py: fix syntax errors

parent 8ad2ecbe
No related branches found
No related tags found
1 merge request!11python: Set up Black / flake8
from application import Application
from st3m.application import Application
import ui
class MandelbrotApp(Application):
......@@ -25,7 +25,7 @@ class MandelbrotApp(Application):
for x in range(-240,240):
for y in range(-240,240):
pass
app=MandelbrotApp("Mandelbrot")
app.run()
\ No newline at end of file
from application import SimpleApplication
from st3m.application import SimpleApplication
app = SimpleApplication("flow3rdroids")
......@@ -17,6 +17,8 @@ def on_draw():
def on_scroll_step(direction):
#TODO: ship_direction += direction * angle
pass
def def on_enter():
def on_enter():
#TODO:ship_direction += speed
pass
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment