Skip to content

Commit

Permalink
black formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
bdestombe committed Jul 31, 2023
1 parent cd1c221 commit 701f599
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/dtscalibration/datastore.py
Original file line number Diff line number Diff line change
Expand Up @@ -783,7 +783,14 @@ def check_deprecated_kwargs(self, kwargs):
ds.tmpw.plot()
"""
list_of_depr = ["st_label", "ast_label", "rst_label", "rast_label", "transient_asym_att_x", "transient_att_x"]
list_of_depr = [
"st_label",
"ast_label",
"rst_label",
"rast_label",
"transient_asym_att_x",
"transient_att_x",
]
list_of_pending_depr = []

kwargs = {k: v for k, v in kwargs.items() if k not in list_of_pending_depr}
Expand Down

0 comments on commit 701f599

Please sign in to comment.