Skip to content

Commit

Permalink
Ruff Autofix Bite
Browse files Browse the repository at this point in the history
  • Loading branch information
Maffooch committed Jan 17, 2025
1 parent 101555c commit 12ace77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dojo/tools/factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def requires_tool_type(scan_type):

# iterate through the modules in the current package
package_dir = str(Path(__file__).resolve().parent)
for module_name in os.listdir(package_dir):
for module_name in os.listdir(package_dir): # noqa: PTH208
# check if it's dir
if Path(os.path.join(package_dir, module_name)).is_dir():
try:
Expand Down

0 comments on commit 12ace77

Please sign in to comment.