Skip to content

Commit

Permalink
raster: Fixed PEP8 - E721 for category.py (#4758)
Browse files Browse the repository at this point in the history
  • Loading branch information
arohanajit authored Nov 27, 2024
1 parent 3b5486c commit 115a3c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ per-file-ignores =
python/grass/pygrass/vector/__init__.py: E402
python/grass/pygrass/raster/__init__.py: E402
python/grass/pygrass/vector/__init__.py: E402
python/grass/pygrass/raster/category.py: E721
python/grass/pygrass/utils.py: E402
python/grass/temporal/abstract_space_time_dataset.py: E722
python/grass/temporal/c_libraries_interface.py: E722
Expand Down
4 changes: 2 additions & 2 deletions python/grass/pygrass/raster/category.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,15 +107,15 @@ def __repr__(self):
return "[{0}]".format(",\n ".join(cats))

def _chk_index(self, index):
if type(index) == str:
if isinstance(index, str):
try:
index = self.labels().index(index)
except ValueError:
raise KeyError(index)
return index

def _chk_value(self, value):
if type(value) == tuple:
if isinstance(value, tuple):
length = len(value)
if length == 2:
label, min_cat = value
Expand Down

0 comments on commit 115a3c4

Please sign in to comment.