Skip to content

Commit

Permalink
update edc_site path
Browse files Browse the repository at this point in the history
  • Loading branch information
erikvw committed Jan 4, 2024
1 parent 2ca6628 commit 0546551
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion edc_metadata/metadata/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

if TYPE_CHECKING:
from edc_model.models import BaseUuidModel
from edc_sites.models import SiteModelMixin
from edc_sites.model_mixins import SiteModelMixin
from edc_visit_schedule.visit import Crf, Requisition
from edc_visit_tracking.model_mixins import VisitModelMixin as Base

Expand Down
2 changes: 1 addition & 1 deletion edc_metadata/metadata_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

if TYPE_CHECKING:
from edc_model.models import BaseUuidModel
from edc_sites.models import SiteModelMixin
from edc_sites.model_mixins import SiteModelMixin
from edc_visit_tracking.model_mixins import VisitModelMixin as Base

from .model_mixins.creates import CreatesMetadataModelMixin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from edc_crf.model_mixins import CrfModelMixin
from edc_model.models import BaseUuidModel
from edc_sites.models import SiteModelMixin
from edc_sites.model_mixins import SiteModelMixin
from edc_visit_tracking.model_mixins import VisitModelMixin as Base

from ..model_mixins.creates import CreatesMetadataModelMixin
Expand Down
2 changes: 1 addition & 1 deletion edc_metadata/models/crf_metadata_model_mixin.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from django.db import models
from django.utils.translation import gettext as _
from edc_identifier.model_mixins import NonUniqueSubjectIdentifierFieldMixin
from edc_sites.models import SiteModelMixin
from edc_sites.model_mixins import SiteModelMixin
from edc_visit_schedule.model_mixins import (
VisitScheduleFieldsModelMixin,
VisitScheduleMethodsModelMixin,
Expand Down
2 changes: 1 addition & 1 deletion edc_metadata/models/requisition_metadata.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from django.db import models
from django.db.models import UniqueConstraint
from edc_model.models import BaseUuidModel
from edc_sites.models import CurrentSiteManager
from edc_sites.managers import CurrentSiteManager

from .. import KEYED, NOT_REQUIRED, REQUIRED
from ..managers import RequisitionMetadataManager
Expand Down
2 changes: 1 addition & 1 deletion edc_metadata/tests/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from edc_model.models import BaseUuidModel
from edc_registration.model_mixins import UpdatesOrCreatesRegistrationModelMixin
from edc_screening.model_mixins import ScreeningModelMixin
from edc_sites.models import SiteModelMixin
from edc_sites.model_mixins import SiteModelMixin
from edc_utils import get_utcnow
from edc_visit_schedule.model_mixins import OffScheduleModelMixin, OnScheduleModelMixin
from edc_visit_tracking.model_mixins import (
Expand Down

0 comments on commit 0546551

Please sign in to comment.