Guest User

Untitled

a guest
Jul 19th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. # module.py
  2. def foo():
  3. print('Foo!')
  4.  
  5. # script.py
  6. from . import module
  7. module.foo()
  8.  
  9. > ImportError: cannot import name 'module'
Add Comment
Please, Sign In to add comment