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 a9e5267 commit 13f735cCopy full SHA for 13f735c
easybuild/tools/modules.py
@@ -225,7 +225,7 @@ def update(self, item):
225
def remove(self, *args):
226
"""Shortcut to remove items from list of contents"""
227
try:
228
- self.contents.remove(*args)
+ self.contents.remove(args)
229
except ValueError:
230
# item is not in the list, move along
231
self.log.debug(f"ModuleEnvironmentVariable does not contain item: {' '.join(args)}")
0 commit comments