diff options
author | Christian Clauss <cclauss@me.com> | 2021-02-09 17:44:04 +0100 |
---|---|---|
committer | bnewbold <bnewbold@robocracy.org> | 2021-02-23 15:19:48 -0800 |
commit | 537659325664b47b01c24e82cb4a0e850cd129c0 (patch) | |
tree | bb7c93162d9f586a8bec17608cf7eceb11d47cf0 /tests/test_work_pipeline.py | |
parent | 5878aa63118388361f353ca4f2f6c49a14a58b56 (diff) | |
download | fatcat-scholar-537659325664b47b01c24e82cb4a0e850cd129c0.tar.gz fatcat-scholar-537659325664b47b01c24e82cb4a0e850cd129c0.zip |
Modernize Python syntax with pyupgrade --py38-plus **/*.py
Diffstat (limited to 'tests/test_work_pipeline.py')
-rw-r--r-- | tests/test_work_pipeline.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_work_pipeline.py b/tests/test_work_pipeline.py index e0e4a82..39b09dc 100644 --- a/tests/test_work_pipeline.py +++ b/tests/test_work_pipeline.py @@ -84,5 +84,5 @@ def test_run_transform(mocker: Any) -> None: ), ) - with open("tests/files/release_hsmo6p4smrganpb3fndaj2lon4_sans.json", "r") as f: + with open("tests/files/release_hsmo6p4smrganpb3fndaj2lon4_sans.json") as f: wp.run_releases(f.readlines()) |