Skip to content

Commit

Permalink
Issue pythonarcade#44. Imports not working quite right. Auto-complete…
Browse files Browse the repository at this point in the history
… on PyCharm isn't working for arcade.color and arcade.key
  • Loading branch information
pvcraven committed Dec 10, 2017
1 parent 54d8779 commit 3e6da1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arcade/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
if sys.version_info[0] < 3 or (sys.version_info[0] == 3 and sys.version_info[1] < 6):
sys.exit("The Arcade Library requires Python 3.6 or higher.")

import arcade.color
import arcade.key
from arcade import color
from arcade import key
from arcade.application import *
from arcade.arcade_types import *
from arcade.draw_commands import *
Expand Down

0 comments on commit 3e6da1e

Please sign in to comment.