Skip to content

Commit

Permalink
removed unused variables in hydrogel_builder.py
Browse files Browse the repository at this point in the history
  • Loading branch information
1234somesh committed Dec 20, 2024
1 parent 97f932a commit 17188f7
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions testsuite/hydrogel_builder.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
import numpy as np
import random
import lib.lattice
import unittest as ut
import matplotlib
import matplotlib.pyplot as plt
import pyMBE
from lib.lattice import DiamondLattice
import espressomd
Expand Down Expand Up @@ -201,7 +198,7 @@
for _, row in filtered_df.iterrows():
bond_object = row["bond_object"]
if bond_object is None:
raise ValueError(f"Bond object is not defined near nodes")
raise ValueError("Bond object is not defined near nodes")

central_bead_name_near_node_start = pmb.df[pmb.df["particle_id"]==central_bead_near_node_start]["name"].values[0]
central_bead_name_near_node_end = pmb.df[pmb.df["particle_id"]==central_bead_near_node_end]["name"].values[0]
Expand Down

0 comments on commit 17188f7

Please sign in to comment.