monarch-initiative / oncoexporter

Cancer data to GA4GH phenopacket
https://monarch-initiative.github.io/oncoexporter
MIT License
6 stars 1 forks source link

Fix imports in modules #58

Open ielis opened 8 months ago

ielis commented 8 months ago

We do not need to add . for the module imports:

# src/oncoexporter/__init__.py

from .cda.cda_individual_factory import CdaIndividualFactory
from .cda.cda_biosample_factory import CdaBiosampleFactory

should be this instead


from cda.cda_individual_factory import CdaIndividualFactory
from cda.cda_biosample_factory import CdaBiosampleFactory

and correspondingly the __init__.py files of the other modules as well.