Skip to content

Commit 24bf87a

Browse files
committed
Fix documentation
1 parent b726b19 commit 24bf87a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/pandas_types.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ from pydantic_extra_types.pandas_types import Series
99

1010

1111
class MyData(BaseModel):
12-
numbers: Series[int]
12+
numbers: Series
1313

1414

1515
data = {"numbers": pd.Series([1, 2, 3, 4, 5])}
@@ -22,3 +22,4 @@ print(my_data.numbers)
2222
# > 3 4
2323
# > 4 5
2424
# > dtype: int64
25+
```

0 commit comments

Comments
 (0)