Skip to content

Commit

Permalink
"Recursive Lambda Refactor V1"
Browse files Browse the repository at this point in the history
  • Loading branch information
Recursive Lambda God authored and kevinhughes27 committed Apr 29, 2017
1 parent 7f7d630 commit 31e9bd2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion play.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@


# Play
class Actor:
class Actor(object):

def __init__(self):
# Start session
Expand Down
4 changes: 2 additions & 2 deletions utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def resize_image(img):
return img_as_float(im_arr)


class Screenshot:
class Screenshot(object):
SRC_W = 640
SRC_H = 480
SRC_D = 3
Expand All @@ -54,7 +54,7 @@ class Screenshot:



class XboxController:
class XboxController(object):

MAX_TRIG_VAL = math.pow(2, 8)
MAX_JOY_VAL = math.pow(2, 15)
Expand Down

0 comments on commit 31e9bd2

Please sign in to comment.