diff options
author | Bryan Newbold <bnewbold@archive.org> | 2021-10-27 14:49:58 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2021-10-27 18:25:58 -0700 |
commit | eb0c866d4e226606fe86e0f90af10c776e664a5c (patch) | |
tree | 732be3b53c9947ae8b416e4aaf0b8bb25b3998b9 /tests/test_transform.py | |
parent | 4362e60383bef09d5989830b19ae2d5dec506620 (diff) | |
download | fatcat-scholar-eb0c866d4e226606fe86e0f90af10c776e664a5c.tar.gz fatcat-scholar-eb0c866d4e226606fe86e0f90af10c776e664a5c.zip |
lint: small cleanups, mostly E711 and E713
Diffstat (limited to 'tests/test_transform.py')
-rw-r--r-- | tests/test_transform.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_transform.py b/tests/test_transform.py index 42f51d3..4409bf0 100644 --- a/tests/test_transform.py +++ b/tests/test_transform.py @@ -64,7 +64,7 @@ def test_biblio_metadata_hacks() -> None: biblio.release_year = 2030 out = biblio_metadata_hacks(biblio) - assert out.release_year == None + assert out.release_year is None biblio.doi_prefix = "10.1101" biblio.container_name = None |