Skip to content

Commit

Permalink
remove redundant default
Browse files Browse the repository at this point in the history
  • Loading branch information
rreinold committed Sep 19, 2024
1 parent be23155 commit e8e4452
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion great_expectations/expectations/expectation.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ def schema_extra(schema: Dict[str, Any], model: Type[Expectation]) -> None:
args_keys: ClassVar[Tuple[str, ...]] = ()

expectation_type: ClassVar[str]
windows: Optional[List[Window]] = pydantic.Field(default=None, description=WINDOWS_DESCRIPTION)
windows: Optional[List[Window]] = pydantic.Field(description=WINDOWS_DESCRIPTION)
examples: ClassVar[List[dict]] = []

_save_callback: Union[Callable[[Expectation], Expectation], None] = pydantic.PrivateAttr(
Expand Down

0 comments on commit e8e4452

Please sign in to comment.