Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
SorooshMani-NOAA committed Aug 1, 2024
1 parent 6a2e07c commit 82df7cd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_tidal_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,9 @@ def test_tidal_run(shinnecock_mesh_directory):
pd.DataFrame({'xi': xi2, 'yi': yi2, 'zi': zi2}).to_csv(
output_directory / f'debug_adjxyz_ampl_{constituent}_{index}.csv'
)
amp = griddata((xi2, yi2), zi2, (xq, yq), method='linear', fill_value=np.nan,) * 0.01
amp = (
griddata((xi2, yi2), zi2, (xq, yq), method='linear', fill_value=np.nan,) * 0.01
)
df_tide = pd.DataFrame({'amp': amp, 'phase': phase})
df_tide.to_csv(output_directory / f'debug_tide_{constituent}_{index}.csv')

Expand Down

0 comments on commit 82df7cd

Please sign in to comment.