Skip to content

Commit

Permalink
Initialize BaseModel
Browse files Browse the repository at this point in the history
  • Loading branch information
liquidz00 committed Jul 10, 2024
1 parent 1167080 commit bf6f7a6
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/patcher/model/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
from pydantic import BaseModel


class Model(BaseModel):
def __init__(self, **kwargs):
""""""
super().__init__(**kwargs)

0 comments on commit bf6f7a6

Please # to comment.