Skip to content

Commit

Permalink
Format code with black and isort
Browse files Browse the repository at this point in the history
  • Loading branch information
deepsource-autofix[bot] committed Nov 7, 2022
1 parent a20e15b commit 4562856
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/moffragmentor/sbu/sbu.py
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,11 @@ def __eq__(self, other: "SBU") -> bool:

@cached_property
def branching_coords(self):
return self.cart_coords[self.graph_branching_indices] if self._dummy_branching_indices is None else self._dummy_molecule.cart_coords[self.graph_branching_indices]
return (
self.cart_coords[self.graph_branching_indices]
if self._dummy_branching_indices is None
else self._dummy_molecule.cart_coords[self.graph_branching_indices]
)

@property
def original_binding_indices(self):
Expand Down

0 comments on commit 4562856

Please sign in to comment.