Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix imports in modules #58

Open
ielis opened this issue Jan 16, 2024 · 0 comments
Open

Fix imports in modules #58

ielis opened this issue Jan 16, 2024 · 0 comments
Assignees

Comments

@ielis
Copy link
Member

ielis commented Jan 16, 2024

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.

@ielis ielis self-assigned this Jan 16, 2024
@ielis ielis linked a pull request Jan 22, 2024 that will close this issue
@ielis ielis removed a link to a pull request Jan 22, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant