We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bcbda3 commit 413759cCopy full SHA for 413759c
mmengine/config/config.py
@@ -352,15 +352,16 @@ def to_dict(self):
352
353
354
class ConfigList(LazyContainerMixin, list): # type: ignore
355
- ...
+
356
+ def pop(self, idx):
357
+ return self.build_lazy(super().pop(idx))
358
359
360
class ConfigTuple(LazyContainerMixin, tuple): # type: ignore
361
...
362
363
364
class ConfigSet(LazyContainerMixin, set): # type: ignore
365
366
def pop(self, idx):
367
return self.build_lazy(super().pop(idx))
0 commit comments