change intra-package import statements to have absolute path. this to avoid circular importing. the imports specified in __init__ of each module are only intended to be used outside of src (e.g. tests, API usage).

This commit is contained in:
Pim Nelissen
2026-02-17 10:11:03 +01:00
parent 5684525d0f
commit c2b05c63a8
6 changed files with 10 additions and 28 deletions

View File

@ -3,7 +3,7 @@ import logging
from matplotlib import pyplot as plt
from matplotlib.patches import Circle
from pg_rad.landscape import Landscape
from pg_rad.landscape.landscape import Landscape
logger = logging.getLogger(__name__)