Skip to content

Commit

Permalink
Adding missing kwargs
Browse files Browse the repository at this point in the history
  • Loading branch information
germa89 committed Oct 25, 2023
1 parent 75d43b0 commit 1a6bd29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ansys/mapdl/core/_commands/graphics_/annotation.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ def anum(self, num="", type_="", xhot="", yhot="", **kwargs):
command = f"/ANUM,{num},{type_},{xhot},{yhot}"
return self.run(command, **kwargs)

def slashlarc(self, xcentr="", ycentr="", xlrad="", angle1="", angle2=""):
def slashlarc(self, xcentr="", ycentr="", xlrad="", angle1="", angle2="", **kwargs):
"""Creates annotation arcs (GUI).
APDL Command: /LARC
Expand Down

0 comments on commit 1a6bd29

Please sign in to comment.