Merge pull request #14 from pim-n/fix-object-name

rename Object to BaseObject. Addresses #8
This commit is contained in:
Pim Nelissen
2026-02-02 11:38:04 +01:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
import math
from typing import Self
class Object:
class BaseObject:
def __init__(
self,
x: float,

View File

@ -1,11 +1,11 @@
import logging
from .objects import Object
from .objects import BaseObject
from pg_rad.isotopes import Isotope
logger = logging.getLogger(__name__)
class PointSource(Object):
class PointSource(BaseObject):
_id_counter = 1
def __init__(
self,