Skip to content

Commit

Permalink
dm followup form, endpoint review, study medication
Browse files Browse the repository at this point in the history
  • Loading branch information
erikvw committed Feb 15, 2024
1 parent 2e4ca3a commit fc1e89a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 11 deletions.
1 change: 1 addition & 0 deletions meta_edc/settings/minimal.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
A settings file with the bare minimum attributes.
"""

import os
from pathlib import Path

Expand Down
16 changes: 7 additions & 9 deletions meta_screening/admin/screening_part_two_admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,13 @@
from .subject_screening_admin import SubjectScreeningAdmin


def get_fieldsets() -> (
Tuple[
Tuple[str, dict],
Tuple[str, dict],
Tuple[str, dict],
Tuple[str, dict],
Tuple[str, dict],
]
):
def get_fieldsets() -> Tuple[
Tuple[str, dict],
Tuple[str, dict],
Tuple[str, dict],
Tuple[str, dict],
Tuple[str, dict],
]:
return (
get_part_one_fieldset(collapse=True),
get_part_two_fieldset(),
Expand Down
1 change: 0 additions & 1 deletion meta_subject/models/complications_glycemia.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@


class ComplicationsGlycemia(CrfModelMixin, BaseUuidModel):

"""Not used"""

# eye examination
Expand Down
1 change: 0 additions & 1 deletion meta_subject/models/health_economics.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@


class HealthEconomics(CrfModelMixin, BaseUuidModel):

"""Not used"""

occupation = models.CharField(
Expand Down

0 comments on commit fc1e89a

Please sign in to comment.