Skip to content

Commit

Permalink
mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
JochenSiegWork committed Jan 14, 2025
1 parent 0560abf commit be76892
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -173,10 +173,10 @@ def _add_gaussians_for_bonds(
diff = a2_coords - a1_coords
angle = np.arctan2(diff[0], diff[1])

bond_center = (a1_coords + a2_coords) / 2 # type: ignore
bond_center = (a1_coords + a2_coords) / 2

func = GaussFunctor2D(
center=bond_center,
center=bond_center, # type: ignore
std1=bond_width,
std2=bond_length,
scale=bond_weights[i],
Expand Down

0 comments on commit be76892

Please sign in to comment.