There is folder with 2 documnet - __init__.py and main.py.
Code in __init__.py:
a = 1
Code in main.py:
from . import a
print(a)
When I try to run main.py, the terminal displayed:
Traceback (most recent call last):
  File "[myfolder]/main.py", line 1, in <module>
    from . import a
ImportError: cannot import name 'a'
