refactor code into modules

This commit is contained in:
Pim Nelissen
2026-01-31 09:42:21 +01:00
parent db6f859a60
commit 15b7e7e65e
8 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ from matplotlib.patches import Circle
import numpy as np import numpy as np
from pg_rad.path import Path from pg_rad.path import Path
from pg_rad.sources import PointSource from pg_rad.objects import PointSource
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)

View File

@ -1,7 +1,7 @@
import logging import logging
from pg_rad.objects import Object from pg_rad.objects import Object
from pg_rad.isotope import Isotope from pg_rad.isotopes import Isotope
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)