Guest User

Untitled

a guest
Dec 11th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. project
  2. - __init__.py
  3. - modules
  4. - __init__.py
  5. - courses
  6. - __init__.py
  7. - files.py
  8. - files.py
  9.  
  10. ## /files.py
  11. class Foo(object):
  12. pass
  13.  
  14. ## modules/courses/files.py
  15. from project.files import Foo
  16.  
  17. ## result
  18. no module names project.files
Add Comment
Please, Sign In to add comment