Skip to content

Commit

Permalink
style: remove unused type ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
mdtanker committed Feb 22, 2024
1 parent 77cc15d commit 6313e7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/invert4geom/regional.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ def regional_constraints(
else:
data_cols = {"sampled_grav": data, constraint_weights_col: weights}
# merge dicts and create dataframe
constraints_df = pd.DataFrame(data=coord_cols | data_cols) # type: ignore[operator]
constraints_df = pd.DataFrame(data=coord_cols | data_cols)

# grid the entire regional gravity based just on the values at the constraints
if grid_method == "pygmt":
Expand Down

0 comments on commit 6313e7b

Please sign in to comment.