Skip to content

Commit

Permalink
removed str wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
arohanajit committed Feb 21, 2025
1 parent 98269c5 commit 3665718
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui/wxpython/gcp/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ def OnLocation(self, event):
for item in location_path.iterdir():
if item.is_dir() and (item / "WIND").exists():
if item.name != "PERMANENT":
self.mapsetList.append(str(item.name))
self.mapsetList.append(item.name)

self.xymapset = "PERMANENT"
utils.ListSortLower(self.mapsetList)
Expand Down

0 comments on commit 3665718

Please sign in to comment.