Skip to content

Commit bdb94fe

Browse files
committed
update pre-commit pylint version
1 parent a94cdea commit bdb94fe

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

Diff for: .pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ repos:
1818
- id: end-of-file-fixer
1919
- id: trailing-whitespace
2020
- repo: https://github.com/pycqa/pylint
21-
rev: v2.17.4
21+
rev: v3.2.6
2222
hooks:
2323
- id: pylint
2424
name: pylint (library code)

Diff for: asyncio/event.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,4 @@ async def wait(self):
7272
return True
7373

7474

75-
# CIRCUITPY: remove ThreadSafeFlag
75+
# CIRCUITPY: remove ThreadSafeFlag; non-standard extension.

Diff for: asyncio/funcs.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,7 @@ def remove(t):
9292
pass
9393

9494

95-
# CIRCUITPY-CHANGE: async
96-
async def gather(*aws, return_exceptions=False):
95+
def gather(*aws, return_exceptions=False):
9796
# CIRCUITPY-CHANGE: doc
9897
"""Run all *aws* awaitables concurrently. Any *aws* that are not tasks
9998
are promoted to tasks.

Diff for: asyncio/traceback.py

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55

66
# Note: not present in MicroPython asyncio
77

8+
"""CircuitPython-specific traceback support for asyncio."""
9+
810
try:
911
from typing import List
1012
except ImportError:

0 commit comments

Comments
 (0)