Skip to content

Commit

Permalink
sqme: mypy Context fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Kirill888 committed Jun 24, 2024
1 parent 0d0544d commit 3cb07d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions odc/loader/testing/mem_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import fsspec
import numpy as np
import xarray as xr
from odc.geo.geobox import GeoBox
from odc.geo.geobox import GeoBox, GeoBoxBase
from odc.geo.xr import ODCExtensionDa, ODCExtensionDs, xr_coords, xr_reproject

from ..types import (
Expand Down Expand Up @@ -148,7 +148,7 @@ class Context:

def __init__(
self,
geobox: GeoBox,
geobox: None | GeoBoxBase,
chunks: None | dict[str, int],
) -> None:
self.geobox = geobox
Expand Down

0 comments on commit 3cb07d3

Please sign in to comment.