Skip to content

Commit

Permalink
fixed bug with enum
Browse files Browse the repository at this point in the history
  • Loading branch information
tanjeffreyz committed May 11, 2022
1 parent cf76787 commit d6a90d1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions command_books/kanna.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,12 @@
import math
import settings
import utils
from enum import Enum
from components import Command
from vkeys import press, key_down, key_up


# List of key mappings
class Key(Enum):
class Key:
# Movement
JUMP = 'space'
TELEPORT = 'e'
Expand Down

0 comments on commit d6a90d1

Please sign in to comment.