Skip to content

Commit

Permalink
🚨 Fix linter warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
fbriol committed Oct 25, 2023
1 parent c4e917a commit 91317d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zcollection/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -884,7 +884,7 @@ class Expression:
def __init__(self, expression: str) -> None:
self.code = compile(ast.parse(expression, mode='eval'), ' ', 'eval')

def __call__(self, zds: Dataset) -> NDArray:
def __call__(self, zds: Dataset) -> dask.array.core.Array:
try:
__locals: dict[str, Any] = {
name: zds.variables[name].data
Expand Down

0 comments on commit 91317d4

Please sign in to comment.