From 9963dd16ad0e73ea6111c86125e3ff5c61cd3da2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edouard=20Choini=C3=A8re?= <27212526+echoix@users.noreply.github.com> Date: Sat, 17 Aug 2024 12:47:39 -0400 Subject: [PATCH] gui.wxpython.mapdisp.main: Remove next(self) from LayerList --- gui/wxpython/mapdisp/main.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/gui/wxpython/mapdisp/main.py b/gui/wxpython/mapdisp/main.py index 1e94d3d8ba2..60bf5f7a058 100644 --- a/gui/wxpython/mapdisp/main.py +++ b/gui/wxpython/mapdisp/main.py @@ -369,9 +369,6 @@ def __next__(self): self._index += 1 return result - def next(self): - return next(self) - def GetSelectedLayers(self, checkedOnly=True): # hidden and selected vs checked and selected items = self._map.GetListOfLayers()