Skip to content

Commit

Permalink
Fix type in benchmarks/merge.py (pydata#7235)
Browse files Browse the repository at this point in the history
I don't think this affects what is displayed that is determined by param_names
  • Loading branch information
hmaarrfk authored Oct 29, 2022
1 parent e1936a9 commit 2608c40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion asv_bench/benchmarks/merge.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ def setup(self, existing_elements):
d[f"var{i}"] = i
self.dataset = xr.merge([d])

def time_variable_insertion(self, existin_elements):
def time_variable_insertion(self, existing_elements):
dataset = self.dataset
dataset["new_var"] = 0

0 comments on commit 2608c40

Please sign in to comment.