- remove some method declaration with type hints that work only in Python > 3.8

This commit is contained in:
Marius Stanciu
2020-04-23 03:41:58 +03:00
committed by Marius
parent 32ff35b4ff
commit 495650fc73
2 changed files with 3 additions and 3 deletions

View File

@@ -384,7 +384,7 @@ class FlatCAMObj(QtCore.QObject):
pass
# self.app.log.warning("Failed to read option from field: %s" % option)
def plot(self, kind=None) -> bool:
def plot(self, kind=None):
"""
Plot this object (Extend this method to implement the actual plotting).
Call this in descendants before doing the plotting.