Skip to content

Commit

Permalink
Removed unneeded python object format.
Browse files Browse the repository at this point in the history
  • Loading branch information
mmcdermott committed Jul 30, 2024
1 parent 1da2ec0 commit e10c22d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
5 changes: 0 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,11 +147,6 @@ patient_split = pa.schema(
("split", pa.string()),
]
)
PatientSplit = TypedDict("PatientSplit", {
"patient_id": int,
"split": str,
}, total=True)
```

#### The dataset metadata schema.
Expand Down
5 changes: 0 additions & 5 deletions src/meds/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,6 @@ def data_schema(custom_properties=[]):
]
)

PatientSplit = TypedDict("PatientSplit", {
"patient_id": int,
"split": str,
}, total=True)

############################################################

# The dataset metadata schema.
Expand Down

0 comments on commit e10c22d

Please sign in to comment.