pytorn / hackr

A python library for hackathons.
Apache License 2.0
94 stars 31 forks source link

hackr doesn't load properly #50

Open vinnyp opened 6 years ago

vinnyp commented 6 years ago

I get the following error when I try to import hackr:

---------------------------------------------------------------------------
ModuleNotFoundError                       Traceback (most recent call last)
<ipython-input-1-59166352ef8e> in <module>()
----> 1 import hackr

~/anaconda3/lib/python3.6/site-packages/hackr/__init__.py in <module>()
      4 
      5 from . import generator
----> 6 from . import object_generator
      7 from . import web
      8 from . import actions

~/anaconda3/lib/python3.6/site-packages/hackr/object_generator.py in <module>()
      1 import json
----> 2 import generator
      3 
      4 
      5 def generate_json(count, **kwargs):
ModuleNotFoundError: No module named 'generator'

this commit fixed the issue, but the pip package wasn't updated.