Skip to content

Commit

Permalink
Fixes default value
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-s-molina committed Jan 26, 2022
1 parent e9c9491 commit cd849df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion superset/views/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def loads_request_json(request_json_data: str) -> Dict[Any, Any]:
def get_form_data( # pylint: disable=too-many-locals
slice_id: Optional[int] = None,
use_slice_data: bool = False,
initial_form_data: Dict[str, Any] = None,
initial_form_data: Optional[Dict[str, Any]] = None,
) -> Tuple[Dict[str, Any], Optional[Slice]]:
form_data: Dict[str, Any] = initial_form_data or {}

Expand Down

0 comments on commit cd849df

Please sign in to comment.