diff options
author | Bryan Newbold <bnewbold@archive.org> | 2020-06-03 23:58:38 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2020-06-03 23:58:38 -0700 |
commit | 649913ba9fbab8e9b7b428dec6526797c5b1c532 (patch) | |
tree | f89c3807a2b2125512626dcb766bd84c8ba07106 /fatcat_scholar/schema.py | |
parent | 4c90b94c24e9e78382d12947fb27c203318d6c9c (diff) | |
download | fatcat-scholar-649913ba9fbab8e9b7b428dec6526797c5b1c532.tar.gz fatcat-scholar-649913ba9fbab8e9b7b428dec6526797c5b1c532.zip |
start some annotaition fixes for pytype
Diffstat (limited to 'fatcat_scholar/schema.py')
-rw-r--r-- | fatcat_scholar/schema.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fatcat_scholar/schema.py b/fatcat_scholar/schema.py index 616857e..187fe58 100644 --- a/fatcat_scholar/schema.py +++ b/fatcat_scholar/schema.py @@ -10,8 +10,10 @@ from enum import Enum from typing import Optional, List, Any import ftfy -from pydantic import BaseModel from bs4 import BeautifulSoup +# pytype: disable=import-error +from pydantic import BaseModel +# pytype: enable=import-error from fatcat_openapi_client import ReleaseEntity, ReleaseContrib from fatcat_scholar.api_entities import entity_to_dict |