Skip to content

Commit

Permalink
fix a type error and remove unnecessary print
Browse files Browse the repository at this point in the history
  • Loading branch information
peterdsharpe committed Feb 14, 2024
1 parent e389274 commit 8835175
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions aerosandbox/geometry/openvsp_io/asb_to_openvsp/_utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,8 @@ def wrap_script(
{
array<string> @geomids = FindGeoms();
for (int i = 0; i < geomids.size(); i++)
for (uint i = 0; i < geomids.length(); i++)
{
Print(geomids[i]);
SetGeomDrawType( geomids[i], GEOM_DRAW_SHADE );
}
}
Expand Down

0 comments on commit 8835175

Please sign in to comment.