Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew-S-Rosen committed Sep 28, 2023
1 parent bb9c2fa commit de0d676
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/core/test_reference.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import Dict, List, Optional, Union
from typing import Dict, List, Union

import pytest

Expand Down Expand Up @@ -161,7 +161,7 @@ class InnerSchema(BaseModel):
class MediumSchema(BaseModel):
s: str
nested: InnerSchema
nested_opt: Optional[InnerSchema] = None
nested_opt: InnerSchema = None
nested_u: Union[InnerSchema, dict]
nested_l: List[InnerSchema]
nested_d: Dict[str, InnerSchema]
Expand Down

0 comments on commit de0d676

Please sign in to comment.