🚨 Fix linter errors/warnings; adjust ruff configuration

This commit is contained in:
2023-03-10 17:41:08 +01:00
parent 25cbe8de4b
commit 127ba69d3b
3 changed files with 11 additions and 1 deletions

View File

@ -16,5 +16,8 @@ limitations under the License."""
__version__ = "0.0.1"
__doc__ = """
PLACEHOLDER
Generic schema with full typing support and minimal boilerplate.
"""
from .decorators import post_load
from .schema import GenericSchema

View File

@ -1,3 +1,5 @@
"""Typed overloads for some of the `marshmallow.decorators` module."""
from collections.abc import Callable
from typing import Any, Optional, TypeVar, overload
from typing_extensions import ParamSpec