Skip to content

Commit

Permalink
style: pylint disable some lines
Browse files Browse the repository at this point in the history
Signed-off-by: F.N. Claessen <[email protected]>
  • Loading branch information
Flix6x committed Dec 6, 2024
1 parent c7d4171 commit bed4b1c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/s2python/message.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from typing import Union

from pydantic import BaseModel # noqa F401
from pydantic import BaseModel # pylint: disable=no-name-in-module, unused-import; ignore E0611 and W0611

from s2python.common import (
Handshake,
Expand Down
4 changes: 2 additions & 2 deletions src/s2python/validate_values_mixin.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
Union,
)

from pydantic import BaseModel
from pydantic import BaseModel # pylint: disable=no-name-in-module; ignore E0611
from pydantic import Protocol as PydanticProtocol # pylint: disable=no-name-in-module
from pydantic import StrBytes, ValidationError
from pydantic import StrBytes, ValidationError # pylint: disable=no-name-in-module; ignore E0611
from pydantic.error_wrappers import display_errors # pylint: disable=no-name-in-module

from s2python.s2_validation_error import S2ValidationError
Expand Down

0 comments on commit bed4b1c

Please sign in to comment.