Skip to content

Commit

Permalink
py36
Browse files Browse the repository at this point in the history
  • Loading branch information
ceholden committed Dec 6, 2024
1 parent dc7ea83 commit 8950db6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_vi.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from datetime import datetime
from pathlib import Path
from typing import Mapping, Optional, Tuple
from typing import Dict, List, Mapping, Optional, Tuple
from xml.etree import ElementTree as ET
import contextlib
import io
Expand Down Expand Up @@ -125,7 +125,7 @@ def test_apply_union_of_masks():


def create_fake_granule_data(
dest: Path, granule_id: str, sr: dict[Band, int], fmask: int
dest: Path, granule_id: str, sr: Dict[Band, int], fmask: int
):
"""Generate fake granule data for a single pixel"""
granule = GranuleId.from_string(granule_id)
Expand Down Expand Up @@ -212,7 +212,7 @@ def create_fake_granule_data(
)
def test_granule_bands_masking(
tmp_path: pytest.TempPathFactory,
reflectances: list[int],
reflectances: List[int],
fmask: int,
masked: bool,
):
Expand Down

0 comments on commit 8950db6

Please sign in to comment.