Skip to content

Commit

Permalink
pylint tweeks
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisMcGowanAu committed Jul 16, 2024
1 parent 72b80f4 commit 68648d1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions createWidget.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ class createWidget:
# [widgetName, parentName , widget, childList]
widgetNameList = []
widgetId = 0
baseRoot = any
lastCreated = None
dragType = ["move", "dragEast", "dragWest", "dragNorth", "dragSouth"]

Expand All @@ -209,7 +210,7 @@ def __init__(self, root, widget):
self.lastY = 0
self.root = root
self.widget = widget
self.popup = Any
self.popup = any
self.startX = 0
self.startY = 0
log.debug(self.widget.widgetName)
Expand Down Expand Up @@ -266,7 +267,7 @@ def __init__(self, root, widget):
createWidget.lastCreated = self

def setRoot(self, root):
baseRoot = root
createWidget.baseRoot = root

def addPlace(self, placeDict):
log.debug(placeDict)
Expand Down

0 comments on commit 68648d1

Please sign in to comment.