Skip to content

Commit 2080748

Browse files
committed
address github #1: changing other_information default typing to List
Signed-off-by: Neal Ensor <ensorn@osti.gov>
1 parent 52fd5a5 commit 2080748

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "elinkapi"
7-
version = "0.3.3"
7+
version = "0.3.4"
88
authors = [
99
{ name="Jacob Samar", email="samarj@osti.gov" },
1010
{ name="Neal Ensor", email="ensorn@osti.gov" }

src/elinkapi/record.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ class ProductType(Enum):
136136
opn_document_categories: List[str] = None
137137
opn_document_location: str = None
138138
opn_fieldoffice_acronym_code: str = None
139-
other_information: list[str] = None
139+
other_information: List[str] = None
140140
ouo_release_date: datetime.date = None
141141
pams_publication_status: int = None
142142
pams_publication_status_other: str = None

0 commit comments

Comments
 (0)