Remove pylint annotations and script

This commit is contained in:
Markus Lampert
2022-02-28 21:02:45 -08:00
parent 36d865df04
commit 8583894284
82 changed files with 160 additions and 408 deletions

View File

@@ -424,7 +424,7 @@ class ToolLibraryManager:
else:
return False
except Exception as e: # pylint: disable=broad-except
except Exception as e:
print("could not parse file", e)
def write(self, filename, listname):
@@ -472,7 +472,7 @@ class ToolLibraryManager:
fp.close()
print("Written ", PathUtil.toUnicode(fname))
except Exception as e: # pylint: disable=broad-except
except Exception as e:
print("Could not write file:", e)
def addnew(self, listname, tool, position=None):