diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2020-05-26 19:01:28 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2020-05-26 19:09:55 -0700 |
commit | 670aed3800873869550b477846f48cb2b4193005 (patch) | |
tree | 46fdb09a5cfe629b2581eaf195fd93ec87b399a3 /python/tests | |
parent | d7ebedc840d8fe27fe0b952986ec9d9161964123 (diff) | |
download | fatcat-670aed3800873869550b477846f48cb2b4193005.tar.gz fatcat-670aed3800873869550b477846f48cb2b4193005.zip |
rename HarvestState.next() to HarvestState.next_span()
"span" short for "timespan" to harvest; there may be a better name to
use.
Motivation for this is to work around a pylint erorr that .next() was
not callable. This might be a bug with pylint, but .next() is also a
very generic name.
Diffstat (limited to 'python/tests')
-rw-r--r-- | python/tests/harvest_state.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/tests/harvest_state.py b/python/tests/harvest_state.py index 4273830f..8b7deba6 100644 --- a/python/tests/harvest_state.py +++ b/python/tests/harvest_state.py @@ -16,7 +16,7 @@ def test_harvest_state(): for d in list(hs.to_process): hs.complete(d) - assert hs.next() is None # pylint: disable=not-callable + assert hs.next_span() is None hs = HarvestState( start_date=datetime.date(2000,1,1), @@ -30,7 +30,7 @@ def test_harvest_state(): assert len(hs.to_process) == 5 hs = HarvestState(catchup_days=0) - assert hs.next() is None # pylint: disable=not-callable + assert hs.next_span() is None hs.enqueue_period( start_date=datetime.date(2000,1,1), end_date=datetime.date(2000,1,3), |