Disable pylint too-many-lines (#413)

This commit is contained in:
Jesse Hills 2023-04-03 16:53:43 +12:00 committed by GitHub
parent d6fd9b6cfd
commit d7ae431c59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,3 @@
# pylint: disable=too-many-lines
import asyncio
import logging
from typing import (

View File

@ -27,4 +27,5 @@ disable = [
"raise-missing-from",
"bad-mcs-classmethod-argument",
"duplicate-code",
"too-many-lines",
]