Skip to content

Commit d64d546

Browse files
Fix bug in tkinter
1 parent 7c95840 commit d64d546

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

mats/tkwidgets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ def __init__(
4141
):
4242
self._logger = logging.getLogger(self.__class__.__name__)
4343
self._logger.setLevel(loglevel)
44+
self._string_length_warning_issued = False
4445

4546
self._parent = parent
4647
super().__init__(self._parent)
@@ -122,7 +123,6 @@ def __init__(
122123
relief=_relief, padx=_label_padding, pady=_label_padding
123124
)
124125

125-
self._string_length_warning_issued = False
126126
self._update()
127127

128128
def _update(self):

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "mats"
3-
version = "0.74.4"
3+
version = "0.74.5"
44
description = "Manufacturing Automated Test System, a framework for building device testing quickly and consistently"
55
authors = [
66
{name = "Jason R. Jones", email = "slightlynybbled@gmail.com"},

0 commit comments

Comments
 (0)