Commit c092553 1 parent add733e commit c092553 Copy full SHA for c092553
File tree 2 files changed +5
-7
lines changed
2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -57,9 +57,9 @@ class Settings(pydantic_settings.BaseSettings):
57
57
expiration : Optional [datetime .datetime ] = None
58
58
tag : Optional [str ] = None
59
59
return_cache_entry : bool = False
60
- logger : Union [
61
- structlog . BoundLogger , structlog . _config . BoundLoggerLazyProxy
62
- ] = _DEFAULT_LOGGER
60
+ logger : Union [structlog . BoundLogger , structlog . _config . BoundLoggerLazyProxy ] = (
61
+ _DEFAULT_LOGGER
62
+ )
63
63
lock_timeout : Optional [float ] = None
64
64
65
65
@pydantic .field_validator ("create_engine_kwargs" )
Original file line number Diff line number Diff line change @@ -198,8 +198,7 @@ def decode_xr_object(
198
198
storage_options : dict [str , Any ],
199
199
xr_type : Literal ["DataArray" ],
200
200
** kwargs : Any ,
201
- ) -> xr .DataArray :
202
- ...
201
+ ) -> xr .DataArray : ...
203
202
204
203
205
204
@overload
@@ -208,8 +207,7 @@ def decode_xr_object(
208
207
storage_options : dict [str , Any ],
209
208
xr_type : Literal ["Dataset" ],
210
209
** kwargs : Any ,
211
- ) -> xr .Dataset :
212
- ...
210
+ ) -> xr .Dataset : ...
213
211
214
212
215
213
@_requires_xarray_and_dask
You can’t perform that action at this time.
0 commit comments