Skip to content

Commit

Permalink
patch
Browse files Browse the repository at this point in the history
Signed-off-by: Emile Tenezakis <e.tenezakis@gmail.com>
  • Loading branch information
emileten committed Apr 19, 2024
1 parent 4bb66b6 commit 2a3bb40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os
from datetime import datetime
from typing import Dict, Tuple
from typing import Dict, Optional, Tuple

import numpy as np
import pandas as pd # type: ignore
Expand Down Expand Up @@ -47,7 +47,7 @@ class TestTarget(WriteDataset):
def __init__(self):
self.datasets = {}

def write(self, path: str, dataset: xr.Dataset):
def write(self, path: str, dataset: xr.Dataset, spatial_coords: Optional[bool] = False):
self.datasets[path] = dataset

def read(self, path: str):
Expand Down

0 comments on commit 2a3bb40

Please sign in to comment.