diff --git a/tests/datasets/test_bigearthnet.py b/tests/datasets/test_bigearthnet.py index 21b0f887fa4..349530e9b18 100644 --- a/tests/datasets/test_bigearthnet.py +++ b/tests/datasets/test_bigearthnet.py @@ -136,7 +136,7 @@ def test_already_downloaded_not_extracted( def test_not_downloaded(self, tmp_path: Path) -> None: err = "Dataset not found in `root` directory and `download=False`, " "either specify a different `root` directory or use `download=True` " - "to automaticaly download the dataset." + "to automatically download the dataset." with pytest.raises(RuntimeError, match=err): BigEarthNet(str(tmp_path)) diff --git a/tests/datasets/test_eurosat.py b/tests/datasets/test_eurosat.py index 0d511ea84b9..a4bdd02c008 100644 --- a/tests/datasets/test_eurosat.py +++ b/tests/datasets/test_eurosat.py @@ -91,7 +91,7 @@ def test_already_downloaded_not_extracted( def test_not_downloaded(self, tmp_path: Path) -> None: err = "Dataset not found in `root` directory and `download=False`, " "either specify a different `root` directory or use `download=True` " - "to automaticaly download the dataset." + "to automatically download the dataset." with pytest.raises(RuntimeError, match=err): EuroSAT(str(tmp_path)) diff --git a/tests/datasets/test_idtrees.py b/tests/datasets/test_idtrees.py index 6dbb13d2324..0adc7c36e6e 100644 --- a/tests/datasets/test_idtrees.py +++ b/tests/datasets/test_idtrees.py @@ -95,7 +95,7 @@ def test_already_downloaded(self, dataset: IDTReeS) -> None: def test_not_downloaded(self, tmp_path: Path) -> None: err = "Dataset not found in `root` directory and `download=False`, " "either specify a different `root` directory or use `download=True` " - "to automaticaly download the dataset." + "to automatically download the dataset." with pytest.raises(RuntimeError, match=err): IDTReeS(str(tmp_path)) diff --git a/tests/datasets/test_nasa_marine_debris.py b/tests/datasets/test_nasa_marine_debris.py index 1c60fd1b34e..1a428cdf858 100644 --- a/tests/datasets/test_nasa_marine_debris.py +++ b/tests/datasets/test_nasa_marine_debris.py @@ -65,7 +65,7 @@ def test_already_downloaded_not_extracted( def test_not_downloaded(self, tmp_path: Path) -> None: err = "Dataset not found in `root` directory and `download=False`, " "either specify a different `root` directory or use `download=True` " - "to automaticaly download the dataset." + "to automatically download the dataset." with pytest.raises(RuntimeError, match=err): NASAMarineDebris(str(tmp_path)) diff --git a/tests/datasets/test_patternnet.py b/tests/datasets/test_patternnet.py index f498a1dc1bb..5214fa7c785 100644 --- a/tests/datasets/test_patternnet.py +++ b/tests/datasets/test_patternnet.py @@ -54,7 +54,7 @@ def test_already_downloaded_not_extracted( def test_not_downloaded(self, tmp_path: Path) -> None: err = "Dataset not found in `root` directory and `download=False`, " "either specify a different `root` directory or use `download=True` " - "to automaticaly download the dataset." + "to automatically download the dataset." with pytest.raises(RuntimeError, match=err): PatternNet(str(tmp_path)) diff --git a/tests/datasets/test_resisc45.py b/tests/datasets/test_resisc45.py index e4eaf4e4a6f..4fc3edb2bb6 100644 --- a/tests/datasets/test_resisc45.py +++ b/tests/datasets/test_resisc45.py @@ -82,7 +82,7 @@ def test_already_downloaded_not_extracted( def test_not_downloaded(self, tmp_path: Path) -> None: err = "Dataset not found in `root` directory and `download=False`, " "either specify a different `root` directory or use `download=True` " - "to automaticaly download the dataset." + "to automatically download the dataset." with pytest.raises(RuntimeError, match=err): RESISC45(str(tmp_path)) diff --git a/tests/datasets/test_ucmerced.py b/tests/datasets/test_ucmerced.py index 9d8011d1d6e..e2a6db6b7e0 100644 --- a/tests/datasets/test_ucmerced.py +++ b/tests/datasets/test_ucmerced.py @@ -83,7 +83,7 @@ def test_already_downloaded_not_extracted( def test_not_downloaded(self, tmp_path: Path) -> None: err = "Dataset not found in `root` directory and `download=False`, " "either specify a different `root` directory or use `download=True` " - "to automaticaly download the dataset." + "to automatically download the dataset." with pytest.raises(RuntimeError, match=err): UCMerced(str(tmp_path)) diff --git a/tests/datasets/test_zuericrop.py b/tests/datasets/test_zuericrop.py index 54edc7ce037..70007b68b1f 100644 --- a/tests/datasets/test_zuericrop.py +++ b/tests/datasets/test_zuericrop.py @@ -81,7 +81,7 @@ def test_already_downloaded(self, dataset: ZueriCrop) -> None: def test_not_downloaded(self, tmp_path: Path) -> None: err = "Dataset not found in `root` directory and `download=False`, " "either specify a different `root` directory or use `download=True` " - "to automaticaly download the dataset." + "to automatically download the dataset." with pytest.raises(RuntimeError, match=err): ZueriCrop(str(tmp_path)) diff --git a/torchgeo/datasets/agb_live_woody_density.py b/torchgeo/datasets/agb_live_woody_density.py index 5c7e9af1d76..75206309a3f 100644 --- a/torchgeo/datasets/agb_live_woody_density.py +++ b/torchgeo/datasets/agb_live_woody_density.py @@ -104,7 +104,7 @@ def _verify(self) -> None: raise RuntimeError( f"Dataset not found in `root={self.root}` and `download=False`, " "either specify a different `root` directory or use `download=True` " - "to automaticaly download the dataset." + "to automatically download the dataset." ) # Download the dataset diff --git a/torchgeo/datasets/bigearthnet.py b/torchgeo/datasets/bigearthnet.py index 845bad3ead5..c4bda8ff6be 100644 --- a/torchgeo/datasets/bigearthnet.py +++ b/torchgeo/datasets/bigearthnet.py @@ -475,7 +475,7 @@ def _verify(self) -> None: raise RuntimeError( "Dataset not found in `root` directory and `download=False`, " "either specify a different `root` directory or use `download=True` " - "to automaticaly download the dataset." + "to automatically download the dataset." ) # Download and extract the dataset diff --git a/torchgeo/datasets/cdl.py b/torchgeo/datasets/cdl.py index f862a64d79f..9d9c5242564 100644 --- a/torchgeo/datasets/cdl.py +++ b/torchgeo/datasets/cdl.py @@ -378,7 +378,7 @@ def _verify(self) -> None: raise RuntimeError( f"Dataset not found in `root={self.root}` and `download=False`, " "either specify a different `root` directory or use `download=True` " - "to automaticaly download the dataset." + "to automatically download the dataset." ) # Download the dataset diff --git a/torchgeo/datasets/chesapeake.py b/torchgeo/datasets/chesapeake.py index e918e6aa275..7557136d277 100644 --- a/torchgeo/datasets/chesapeake.py +++ b/torchgeo/datasets/chesapeake.py @@ -161,7 +161,7 @@ def _verify(self) -> None: raise RuntimeError( f"Dataset not found in `root={self.root}` and `download=False`, " "either specify a different `root` directory or use `download=True` " - "to automaticaly download the dataset." + "to automatically download the dataset." ) # Download the dataset @@ -672,7 +672,7 @@ def exists(filename: str) -> bool: raise RuntimeError( f"Dataset not found in `root={self.root}` and `download=False`, " "either specify a different `root` directory or use `download=True` " - "to automaticaly download the dataset." + "to automatically download the dataset." ) # Download the dataset diff --git a/torchgeo/datasets/enviroatlas.py b/torchgeo/datasets/enviroatlas.py index 8c6a75f85cd..07737f6fc4c 100644 --- a/torchgeo/datasets/enviroatlas.py +++ b/torchgeo/datasets/enviroatlas.py @@ -433,7 +433,7 @@ def exists(filename: str) -> bool: raise RuntimeError( f"Dataset not found in `root={self.root}` and `download=False`, " "either specify a different `root` directory or use `download=True` " - "to automaticaly download the dataset." + "to automatically download the dataset." ) # Download the dataset diff --git a/torchgeo/datasets/esri2020.py b/torchgeo/datasets/esri2020.py index 9eb84b3d355..52d7186a0f4 100644 --- a/torchgeo/datasets/esri2020.py +++ b/torchgeo/datasets/esri2020.py @@ -122,7 +122,7 @@ def _verify(self) -> None: raise RuntimeError( f"Dataset not found in `root={self.root}` and `download=False`, " "either specify a different `root` directory or use `download=True` " - "to automaticaly download the dataset." + "to automatically download the dataset." ) # Download the dataset diff --git a/torchgeo/datasets/eurosat.py b/torchgeo/datasets/eurosat.py index 89953a5f37f..b782ef3847f 100644 --- a/torchgeo/datasets/eurosat.py +++ b/torchgeo/datasets/eurosat.py @@ -208,7 +208,7 @@ def _verify(self) -> None: raise RuntimeError( "Dataset not found in `root` directory and `download=False`, " "either specify a different `root` directory or use `download=True` " - "to automaticaly download the dataset." + "to automatically download the dataset." ) # Download and extract the dataset diff --git a/torchgeo/datasets/idtrees.py b/torchgeo/datasets/idtrees.py index b59b30aa191..e2c37409a68 100644 --- a/torchgeo/datasets/idtrees.py +++ b/torchgeo/datasets/idtrees.py @@ -421,7 +421,7 @@ def _verify(self) -> None: raise RuntimeError( "Dataset not found in `root` directory and `download=False`, " "either specify a different `root` directory or use `download=True` " - "to automaticaly download the dataset." + "to automatically download the dataset." ) # Download and extract the dataset diff --git a/torchgeo/datasets/landcoverai.py b/torchgeo/datasets/landcoverai.py index cc8f29bd7fb..35185c33d4d 100644 --- a/torchgeo/datasets/landcoverai.py +++ b/torchgeo/datasets/landcoverai.py @@ -193,7 +193,7 @@ def _verify(self) -> None: raise RuntimeError( f"Dataset not found in `root={self.root}` and `download=False`, " "either specify a different `root` directory or use `download=True` " - "to automaticaly download the dataset." + "to automatically download the dataset." ) # Download the dataset diff --git a/torchgeo/datasets/nasa_marine_debris.py b/torchgeo/datasets/nasa_marine_debris.py index 11e7d37cf83..3b383ac17c5 100644 --- a/torchgeo/datasets/nasa_marine_debris.py +++ b/torchgeo/datasets/nasa_marine_debris.py @@ -199,7 +199,7 @@ def _verify(self) -> None: raise RuntimeError( "Dataset not found in `root` directory and `download=False`, " "either specify a different `root` directory or use `download=True` " - "to automaticaly download the dataset." + "to automatically download the dataset." ) # TODO: need a checksum check in here post downloading diff --git a/torchgeo/datasets/oscd.py b/torchgeo/datasets/oscd.py index 4ebb19dd8fe..2c6097b0c6e 100644 --- a/torchgeo/datasets/oscd.py +++ b/torchgeo/datasets/oscd.py @@ -246,7 +246,7 @@ def _verify(self) -> None: raise RuntimeError( f"Dataset not found in `root={self.root}` and `download=False`, " "either specify a different `root` directory or use `download=True` " - "to automaticaly download the dataset." + "to automatically download the dataset." ) # Download the dataset diff --git a/torchgeo/datasets/patternnet.py b/torchgeo/datasets/patternnet.py index aaf03b30284..0a9de5c727f 100644 --- a/torchgeo/datasets/patternnet.py +++ b/torchgeo/datasets/patternnet.py @@ -124,7 +124,7 @@ def _verify(self) -> None: raise RuntimeError( "Dataset not found in `root` directory and `download=False`, " "either specify a different `root` directory or use `download=True` " - "to automaticaly download the dataset." + "to automatically download the dataset." ) # Download and extract the dataset diff --git a/torchgeo/datasets/resisc45.py b/torchgeo/datasets/resisc45.py index 141aa47623d..985b029f493 100644 --- a/torchgeo/datasets/resisc45.py +++ b/torchgeo/datasets/resisc45.py @@ -213,7 +213,7 @@ def _verify(self) -> None: raise RuntimeError( "Dataset not found in `root` directory and `download=False`, " "either specify a different `root` directory or use `download=True` " - "to automaticaly download the dataset." + "to automatically download the dataset." ) # Download and extract the dataset diff --git a/torchgeo/datasets/seco.py b/torchgeo/datasets/seco.py index c135c4661a2..96d0922c225 100644 --- a/torchgeo/datasets/seco.py +++ b/torchgeo/datasets/seco.py @@ -213,7 +213,7 @@ def _verify(self) -> None: raise RuntimeError( f"Dataset not found in `root={self.root}` and `download=False`, " "either specify a different `root` directory or use `download=True` " - "to automaticaly download the dataset." + "to automatically download the dataset." ) # Download the dataset diff --git a/torchgeo/datasets/spacenet.py b/torchgeo/datasets/spacenet.py index df7226d2a80..ab2b5616153 100644 --- a/torchgeo/datasets/spacenet.py +++ b/torchgeo/datasets/spacenet.py @@ -111,7 +111,7 @@ def __init__( raise RuntimeError( f"Dataset not found in `root={self.root}` and `download=False`, " "either specify a different `root` directory or use " - "`download=True` to automaticaly download the dataset." + "`download=True` to automatically download the dataset." ) else: self._download(to_be_downloaded, api_key) @@ -1220,7 +1220,7 @@ def __init__( raise RuntimeError( f"Dataset not found in `root={self.root}` and `download=False`, " "either specify a different `root` directory or use " - "`download=True` to automaticaly download the dataset." + "`download=True` to automatically download the dataset." ) else: self._download(to_be_downloaded, api_key) diff --git a/torchgeo/datasets/ucmerced.py b/torchgeo/datasets/ucmerced.py index 39e98b520da..48fe069e24e 100644 --- a/torchgeo/datasets/ucmerced.py +++ b/torchgeo/datasets/ucmerced.py @@ -175,7 +175,7 @@ def _verify(self) -> None: raise RuntimeError( "Dataset not found in `root` directory and `download=False`, " "either specify a different `root` directory or use `download=True` " - "to automaticaly download the dataset." + "to automatically download the dataset." ) # Download and extract the dataset diff --git a/torchgeo/datasets/usavars.py b/torchgeo/datasets/usavars.py index af482644812..4457343dd98 100644 --- a/torchgeo/datasets/usavars.py +++ b/torchgeo/datasets/usavars.py @@ -224,7 +224,7 @@ def _verify(self) -> None: raise RuntimeError( f"Dataset not found in `root={self.root}` and `download=False`, " "either specify a different `root` directory or use `download=True` " - "to automaticaly download the dataset." + "to automatically download the dataset." ) self._download() diff --git a/torchgeo/datasets/zuericrop.py b/torchgeo/datasets/zuericrop.py index 069b9f8f101..28bba075801 100644 --- a/torchgeo/datasets/zuericrop.py +++ b/torchgeo/datasets/zuericrop.py @@ -226,7 +226,7 @@ def _verify(self) -> None: raise RuntimeError( "Dataset not found in `root` directory and `download=False`, " "either specify a different `root` directory or use `download=True` " - "to automaticaly download the dataset." + "to automatically download the dataset." ) # Download the dataset