The following words are python builtin functions: hash, filter, dir, format, max, type
This fixes the corresponding flake8 warnings by either:
- removing the code when it is unused
- renaming the variable or function
The big block of code removed in dnssec.py is now unused, as we require dnspython >= 2.0 in requirements.txt
For the specific case of getOpenFileName and getSaveFileName in main_window.py, I chose to ignore/disable the warning because the intent is to wrap Qt functions QFileDialog.getOpenFileName and QFileDialog.getSaveFileName, so it makes sense to use the exact same argument names.
Depends on D14088