Remove pylint from the project
This commit is contained in:
parent
100fac659a
commit
9196c88ed4
25 changed files with 9 additions and 172 deletions
|
|
@ -1,5 +1,4 @@
|
|||
"""Test the `OrderHistory.aggregate_orders()` method."""
|
||||
# pylint:disable=no-self-use,unused-argument
|
||||
|
||||
import datetime
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,6 @@
|
|||
Unless otherwise noted, each `time_step` is 60 minutes long implying
|
||||
12 time steps per day (i.e., we use `LONG_TIME_STEP` by default).
|
||||
"""
|
||||
# pylint:disable=no-self-use,unused-argument
|
||||
|
||||
import datetime
|
||||
|
||||
|
|
@ -54,7 +53,7 @@ def order_totals(good_pixel_id):
|
|||
def order_history(order_totals, grid):
|
||||
"""An `OrderHistory` object that does not need the database."""
|
||||
oh = timify.OrderHistory(grid=grid, time_step=test_config.LONG_TIME_STEP)
|
||||
oh._data = order_totals # pylint:disable=protected-access
|
||||
oh._data = order_totals
|
||||
|
||||
return oh
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,4 @@
|
|||
"""Test the basic functionalities in the `OrderHistory` class."""
|
||||
# pylint:disable=no-self-use
|
||||
|
||||
import pytest
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue