Skip to content

Commit

Permalink
Remove the unnecessary condition
Browse files Browse the repository at this point in the history
  • Loading branch information
tmszi committed Sep 27, 2023
1 parent 9be4684 commit a995328
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions gui/wxpython/gui_core/gselect.py
Original file line number Diff line number Diff line change
Expand Up @@ -2727,9 +2727,8 @@ def _rasterliteDBRastersParser(self, raster_tables, raster_tables_suffix):
other_tables = [
i for i in raster_tables_count if raster_tables_count[i] == 1
]
if other_tables:
for table in other_tables:
del raster_tables_count[table]
for table in other_tables:
del raster_tables_count[table]
return list(raster_tables_count.keys())


Expand Down

0 comments on commit a995328

Please sign in to comment.