NeuralNotwork commited on
Commit
c029ea5
·
verified ·
1 Parent(s): 3729cb1

Delete tools/MyModel.py

Browse files
Files changed (1) hide show
  1. tools/MyModel.py +0 -11
tools/MyModel.py DELETED
@@ -1,11 +0,0 @@
1
- """Template for custom function or Pydantic model."""
2
-
3
- from pydantic import BaseModel
4
- from pydantic import Field
5
-
6
-
7
- class MyModel(BaseModel):
8
- """My model."""
9
-
10
- attr1: str = Field(..., description="The first attribute.")
11
- attr2: int = Field(..., description="The second attribute.")