Skip to content

Commit

Permalink
🔧 Update Ruff config, add extra ignore rule from SQLModel (fastapi#11353
Browse files Browse the repository at this point in the history
)
  • Loading branch information
tiangolo authored Mar 26, 2024
1 parent 910413e commit d0fcfd0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/people/app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 378,7 @@ def get_discussion_nodes(settings: Settings) -> List[DiscussionsNode]:


def get_discussions_experts(
discussion_nodes: List[DiscussionsNode]
discussion_nodes: List[DiscussionsNode],
) -> DiscussionExpertsResults:
commenters = Counter()
last_month_commenters = Counter()
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 152,7 @@ select = [
ignore = [
"E501", # line too long, handled by black
"B008", # do not perform function calls in argument defaults
"C901", # too complex
"W191", # indentation contains tabs
]

Expand Down

0 comments on commit d0fcfd0

Please sign in to comment.