Skip to content

Commit

Permalink
Fix lint problem
Browse files Browse the repository at this point in the history
  • Loading branch information
SorooshMani-NOAA committed Jul 31, 2024
1 parent c9ae169 commit a341ba3
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tests/test_tidal_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,7 @@ def test_tidal_run(shinnecock_mesh_directory):

for constituent in mesh.forcings.tides.get_active_constituents():
for index, row in mesh.boundaries.ocean.gdf.iterrows():
df_verts = pd.DataFrame(
mesh.get_xy(crs='EPSG:4326').iloc[row.indexes, :].values
)
df_verts = pd.DataFrame(mesh.get_xy(crs='EPSG:4326').iloc[row.indexes, :].values)
df_verts.to_csv(output_directory / f'bnd_{constituent}_{index}.csv')

check_reference_directory(
Expand Down

0 comments on commit a341ba3

Please sign in to comment.