Skip to content

Commit 102abb7

Browse files
committed
Move note higher in docstring
1 parent d83f21d commit 102abb7

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

adafruit_logging.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,13 @@
2222
* Adafruit CircuitPython firmware for the supported boards:
2323
https://github.com/adafruit/circuitpython/releases
2424
25+
.. note::
26+
27+
This module has a few key differences compared to its CPython counterpart, notably
28+
that loggers can only be assigned one handler at a time. Calling ``addHander()``
29+
replaces the currently stored handler for that logger. Additionally, the default
30+
formatting for handlers is different.
31+
2532
Attributes
2633
----------
2734
LEVELS : list
@@ -46,13 +53,6 @@
4653
The CRITICAL logging level, which is the highest (most severe) level for
4754
unrecoverable errors that have caused the code to halt and exit.
4855
49-
.. note::
50-
51-
This module has a few key differences compared to its CPython counterpart, notably
52-
that loggers can only be assigned one handler at a time. Calling ``addHander()``
53-
replaces the currently stored handler for that logger. Additionally, the default
54-
formatting for handlers is different.
55-
5656
"""
5757

5858
# pylint: disable=invalid-name,undefined-variable

0 commit comments

Comments
 (0)