Skip to content

Commit

Permalink
linter exception
Browse files Browse the repository at this point in the history
  • Loading branch information
j042 committed Oct 5, 2023
1 parent 0e48cc8 commit 36cc2e4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion gustaf/faces.py
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,10 @@ def to_edges(self, unique=True):
edges=self.unique_edges().values if unique else self.edges(),
)

def to_subelements(self, unique=True):
def to_subelements(
self,
unique=True, # noqa ARG002 # used inside the return eval str
):
"""Returns current elements represented as its boundary element class.
For faces, this is equivalent to `to_edges()`.
For volumes, `to_faces()`.
Expand Down

0 comments on commit 36cc2e4

Please sign in to comment.