Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove debugging slow assert statement #7221

Merged
merged 8 commits into from
Oct 28, 2022
4 changes: 2 additions & 2 deletions asv_bench/benchmarks/dataset_creation.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ def setup(self):
# so lets force modules to get instantiated here, instead of
# in the benchmark
dummy_dataset = xr.Dataset()
dummy_dataset['a'] = 1
dummy_dataset['b'] = 1
dummy_dataset["a"] = 1
dummy_dataset["b"] = 1
dcherian marked this conversation as resolved.
Show resolved Hide resolved

self.dataset = xr.Dataset()

Expand Down