Skip to content

Commit

Permalink
flake8 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
A-CGray committed Jul 18, 2024
1 parent b797ead commit 7921cad
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion openaerostruct/geometry/geometry_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ def setup(self):

# Get the surface name and create a group to contain components
# only for this surface
ny = surface["mesh"].shape[1]

if self.options["DVGeo"]:
from openaerostruct.geometry.ffd_component import GeometryMesh
Expand Down
3 changes: 0 additions & 3 deletions openaerostruct/structures/tube_group.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import numpy as np
import openmdao.api as om
from openaerostruct.structures.section_properties_tube import SectionPropertiesTube
from openaerostruct.geometry.radius_comp import RadiusComp
Expand All @@ -15,8 +14,6 @@ def initialize(self):

def setup(self):
surface = self.options["surface"]
mesh = surface["mesh"]
ny = mesh.shape[1]

if "thickness_cp" in surface.keys():
n_cp = len(surface["thickness_cp"])
Expand Down
2 changes: 0 additions & 2 deletions openaerostruct/structures/wingbox_group.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import numpy as np
import openmdao.api as om
from openaerostruct.structures.section_properties_wingbox import SectionPropertiesWingbox
from openaerostruct.structures.wingbox_geometry import WingboxGeometry
Expand All @@ -13,7 +12,6 @@ def initialize(self):

def setup(self):
surface = self.options["surface"]
ny = surface["mesh"].shape[1]

if "spar_thickness_cp" in surface.keys():
n_cp = len(surface["spar_thickness_cp"])
Expand Down

0 comments on commit 7921cad

Please sign in to comment.