Skip to content

Commit 42db9e6

Browse files
committed
chore: disable pylint warnings for protected access
this is the norm for accessing from core
1 parent 588fe6d commit 42db9e6

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Diff for: asyncio/queue.py

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44
#
55
# MicroPython uasyncio module
66
# MIT license; Copyright (c) 2019-2020 Damien P. George
7+
8+
# The rest of the library assumes that `_never` and `_task_queue` should be imported from
9+
# core, which angers pylint.
10+
# pylint: disable=protected-access
11+
712
"""
813
Exceptions and classes related to asyncio Queue implementations.
914
"""

0 commit comments

Comments
 (0)