Skip to content

Commit

Permalink
style: remove unused TypeVar
Browse files Browse the repository at this point in the history
  • Loading branch information
NiceAesth committed Jul 18, 2023
1 parent 98e5a22 commit 7b8d45a
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions aiosu/models/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
"""
from __future__ import annotations

from typing import TypeVar

import pydantic
from pydantic import ConfigDict

Expand All @@ -13,8 +11,6 @@
"FrozenModel",
)

T = TypeVar("T")


class BaseModel(pydantic.BaseModel):
model_config = ConfigDict(arbitrary_types_allowed=True, populate_by_name=True)
Expand Down

0 comments on commit 7b8d45a

Please sign in to comment.