diff --git a/mizani/utils.py b/mizani/utils.py index 39a8a86..e9c707b 100644 --- a/mizani/utils.py +++ b/mizani/utils.py @@ -370,7 +370,14 @@ def get_null_value(x: Any) -> NullType: import pandas as pd x0 = next(iter(x)) - numeric_types: Sequence[type] = (np.int32, np.int64, np.float64, int, float, bool) + numeric_types: Sequence[type] = ( + np.int32, + np.int64, + np.float64, + int, + float, + bool, + ) if pdtypes.is_object_dtype(x): return None