mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-01 14:21:53 +00:00
8 lines
137 B
Python
8 lines
137 B
Python
import logging.config
|
|
|
|
t = logging.config.listen(9999)
|
|
|
|
def verify_func():
|
|
pass
|
|
|
|
l = logging.config.listen(9999, verify=verify_func)
|