Skip to content

Commit eb46f1b

Browse files
committed
Fix megalinter issue
1 parent d2e8cf1 commit eb46f1b

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

modules/airtable/mentorship_tables.py

-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,6 @@ def mentors_by_skillset(self: "MentorshipSkillsetsTable", skillsets_to_search: l
164164
)
165165
except KeyError:
166166
logger.exception("Key error intercepted retrieving mentors by skillset", extra={"row": row})
167-
pass
168167

169168
# Flatten the array and get unique values
170169
return set(chain(*mentors))

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@ exclude = [
7878
# Exclude the one off script file
7979
"one_offs.py",
8080
# Exclude the vector search testing
81-
"vector*",
81+
"**/vector*",
8282
# Exclude the databases folder
83-
"databases/**",
83+
"**/databases/**",
8484
]
8585

8686
# Same as Black.

0 commit comments

Comments
 (0)