From 45a33f49d111d929d4b24321af94060b1942f7ba Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Thu, 6 Aug 2020 16:15:10 -0700 Subject: volume_int/issue_int as actual ints --- fatcat_scholar/schema.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'fatcat_scholar') diff --git a/fatcat_scholar/schema.py b/fatcat_scholar/schema.py index fb3de10..e369d11 100644 --- a/fatcat_scholar/schema.py +++ b/fatcat_scholar/schema.py @@ -66,9 +66,9 @@ class ScholarBiblio(BaseModel): lang_code: Optional[str] country_code: Optional[str] volume: Optional[str] - volume_int: Optional[str] # TODO: needed? + volume_int: Optional[int] # TODO: needed? issue: Optional[str] - issue_int: Optional[str] # TODO: needed? + issue_int: Optional[int] # TODO: needed? pages: Optional[str] first_page: Optional[str] first_page_int: Optional[int] # TODO: needed? -- cgit v1.2.3