From 84453bd394daed3610911b241963cc2f1c9f274c Mon Sep 17 00:00:00 2001 From: Dan Halbert Date: Fri, 16 Aug 2024 17:34:21 -0400 Subject: [PATCH] update pre-commit pylint version --- .pre-commit-config.yaml | 2 +- asyncio/event.py | 2 +- asyncio/traceback.py | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 70ade69..874bf5f 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -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) diff --git a/asyncio/event.py b/asyncio/event.py index af81afc..1cb1a30 100644 --- a/asyncio/event.py +++ b/asyncio/event.py @@ -72,4 +72,4 @@ async def wait(self): return True -# CIRCUITPY: remove ThreadSafeFlag +# CIRCUITPY: remove ThreadSafeFlag; non-standard extension. diff --git a/asyncio/traceback.py b/asyncio/traceback.py index f87f34e..8e0386e 100644 --- a/asyncio/traceback.py +++ b/asyncio/traceback.py @@ -5,6 +5,8 @@ # Note: not present in MicroPython asyncio +"""CircuitPython-specific traceback support for asyncio.""" + try: from typing import List except ImportError: