Skip to content

Commit

Permalink
Ensure that *pyright* uses multi-threading as per @erictraut recommen…
Browse files Browse the repository at this point in the history
…dations.

References #1301.
  • Loading branch information
KelSolaar committed Oct 9, 2024
1 parent 92e628f commit c83bfc6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ jobs:
pip install -r requirements.txt
- name: Static Type Checking
run: |
pyright --skipunannotated
pyright --threads --skipunannotated
2 changes: 1 addition & 1 deletion tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def quality(

if pyright:
message_box('Checking codebase with "Pyright"...')
ctx.run("pyright --skipunannotated --level warning")
ctx.run("pyright --threads --skipunannotated --level warning")

if rstlint:
message_box('Linting "README.rst" file...')
Expand Down

0 comments on commit c83bfc6

Please sign in to comment.