Skip to content

Commit

Permalink
<>[]: <Bug fix>
Browse files Browse the repository at this point in the history
[
Must be because of polymorphism
]

[#109]
  • Loading branch information
Humberto Sanchez II committed May 8, 2024
1 parent 75bbf9a commit 988b7b7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/ogl/OglLink.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def pyutObject(self, pyutLink: PyutLink):
self._link = pyutLink

def getAnchors(self) -> Tuple[AnchorPoint, AnchorPoint]:
return self._srcAnchor, self._dstAnchor
return self.sourceAnchor, self.destinationAnchor

def Detach(self):
"""
Expand Down Expand Up @@ -438,7 +438,7 @@ def __repr__(self):
def _avoidCrossedLines(self, dstShape, dstX: int, dstY: int, orient, srcShape, srcX: int, srcY: int):
"""
Avoid over-lining
Added by: C. Dutoit (still experimental in 2024
(still experimental in 2024
Args:
dstShape:
Expand Down
2 changes: 1 addition & 1 deletion src/ogl/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.1.31'
__version__ = '2.1.32'

0 comments on commit 988b7b7

Please sign in to comment.