Update linting due to new Ruff rules

This commit is contained in:
Veronica Berglyd Olsen
2025-10-04 18:36:44 +02:00
parent 98cdd4eedf
commit 100aad1256
7 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -89,7 +89,7 @@ class NWTree:
"""
if tHandle and tHandle in self._items:
return self._items[tHandle]
logger.error("No tree item with handle '%s'", str(tHandle))
logger.error("No tree item with handle '%s'", tHandle)
return None
def __contains__(self, tHandle: str) -> bool: