Skip to content

Commit

Permalink
update pre-commit pylint version
Browse files Browse the repository at this point in the history
  • Loading branch information
dhalbert committed Aug 16, 2024
1 parent a94cdea commit bdb94fe
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ repos:
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/pycqa/pylint
rev: v2.17.4
rev: v3.2.6
hooks:
- id: pylint
name: pylint (library code)
Expand Down
2 changes: 1 addition & 1 deletion asyncio/event.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,4 @@ async def wait(self):
return True


# CIRCUITPY: remove ThreadSafeFlag
# CIRCUITPY: remove ThreadSafeFlag; non-standard extension.
3 changes: 1 addition & 2 deletions asyncio/funcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,7 @@ def remove(t):
pass


# CIRCUITPY-CHANGE: async
async def gather(*aws, return_exceptions=False):
def gather(*aws, return_exceptions=False):
# CIRCUITPY-CHANGE: doc
"""Run all *aws* awaitables concurrently. Any *aws* that are not tasks
are promoted to tasks.
Expand Down
2 changes: 2 additions & 0 deletions asyncio/traceback.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@

# Note: not present in MicroPython asyncio

"""CircuitPython-specific traceback support for asyncio."""

try:
from typing import List
except ImportError:
Expand Down

0 comments on commit bdb94fe

Please sign in to comment.