In one of my Python packages the __init__.py file contains the statement
__init__.py
from . import XXXX
What does the \".\" mean here? I g
It's a relative import.