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

Bnb/nc4 dep removal #210

Merged
merged 17 commits into from
May 2, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Prev Previous commit
Next Next commit
unused var i
  • Loading branch information
bnb32 committed Apr 25, 2024
commit 519f577bf00e99c5f8778df31973300cb5f841c9
2 changes: 1 addition & 1 deletion sup3r/utilities/interpolate_log_profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def save_output(self):
logger.info(f'Creating {self.outfile}.')
with xr.open_dataset(self.infile) as ds:
for var, data in self.new_data.items():
for i, height in enumerate(self.new_heights[var]):
for height in self.new_heights[var]:
name = f'{var}_{height}m'
logger.info(f'Adding {name} to {self.outfile}.')
if name not in ds.data_vars:
Expand Down