Skip to content

Commit

Permalink
Fixed unused parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeBell committed Mar 5, 2025
1 parent f79dbc1 commit bf90105
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ShipGen/Generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ def generate_hulls(final_count:int,

idxs = np.argsort(Rt_guidance[valid_idx].flatten())
meshs:list[mesh.Mesh] = []
for i in tqdm(range(0,10)):
for i in tqdm(range(0,final_count)):
Hull = HP(x_samples[valid_idx[idxs[i]]])
#make the .stl file of the hull:
try:
Expand Down

0 comments on commit bf90105

Please sign in to comment.