Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
peterdudfield committed Jul 25, 2024
1 parent a9a847e commit de65edd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ocf_datapipes/training/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ class FakeIter(IterDataPipe):
and for the moment using this FakeIter, to make it back into a datapipe
"""

def __init__(self, data_xr):
def __init__(self, data_xr): # noqa
self.data_xr = data_xr

def __iter__(self) -> xr.DataArray:
def __iter__(self) -> xr.DataArray: # noqa
while True:
yield self.data_xr

Expand Down

0 comments on commit de65edd

Please sign in to comment.