diff options
| author | Frederick Muriuki Muriithi | 2026-01-27 13:57:12 -0600 |
|---|---|---|
| committer | Frederick Muriuki Muriithi | 2026-01-27 13:57:12 -0600 |
| commit | 52bd7e043c0f482885dbdfc46add65f97fbb7dd7 (patch) | |
| tree | 4a6187f70df8f7998fdbfd6207ab20afe06c7280 /gn_auth | |
| parent | bd0f453033327a392afa3194538db5d2be22969e (diff) | |
| download | gn-auth-52bd7e043c0f482885dbdfc46add65f97fbb7dd7.tar.gz | |
Simplify relative import.
Diffstat (limited to 'gn_auth')
| -rw-r--r-- | gn_auth/auth/authorisation/data/views.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gn_auth/auth/authorisation/data/views.py b/gn_auth/auth/authorisation/data/views.py index 9123949..5172157 100644 --- a/gn_auth/auth/authorisation/data/views.py +++ b/gn_auth/auth/authorisation/data/views.py @@ -35,9 +35,9 @@ from ..resources.models import ( from ...authentication.users import User from ...authentication.oauth2.resource_server import require_oauth -from ..data.mrna import link_mrna_data, ungrouped_mrna_data -from ..data.phenotypes import link_phenotype_data, pheno_traits_from_db -from ..data.genotypes import link_genotype_data, ungrouped_genotype_data +from .mrna import link_mrna_data, ungrouped_mrna_data +from .phenotypes import link_phenotype_data, pheno_traits_from_db +from .genotypes import link_genotype_data, ungrouped_genotype_data data = Blueprint("data", __name__) |
