Cleanup: quiet Python linter warnings

This commit is contained in:
Campbell Barton
2024-12-11 11:26:24 +11:00
parent 560b6e2831
commit a7bc3e3418
25 changed files with 49 additions and 38 deletions

View File

@@ -15,7 +15,7 @@ def main():
import bpy
from bpy.types import Operator
def dummy_func(test):
def dummy_func(_test):
pass
kw_dummy = dict(fget=dummy_func, fset=dummy_func, fdel=dummy_func)