tksheet 7.3.4__py3-none-any.whl → 7.4.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
tksheet/__init__.py CHANGED
@@ -4,12 +4,22 @@
4
4
  tksheet - A Python tkinter table widget
5
5
  """
6
6
 
7
- __version__ = "7.3.4"
7
+ __version__ = "7.4.1"
8
8
 
9
9
  from .colors import (
10
10
  color_map,
11
11
  )
12
12
  from .column_headers import ColumnHeaders
13
+ from .constants import (
14
+ USER_OS,
15
+ ctrl_key,
16
+ emitted_events,
17
+ falsy,
18
+ nonelike,
19
+ rc_binding,
20
+ symbols_set,
21
+ truthy,
22
+ )
13
23
  from .formatters import (
14
24
  Formatter,
15
25
  alt_percentage_to_str,
@@ -96,13 +106,3 @@ from .themes import (
96
106
  theme_light_green,
97
107
  )
98
108
  from .top_left_rectangle import TopLeftRectangle
99
- from .constants import (
100
- USER_OS,
101
- ctrl_key,
102
- emitted_events,
103
- falsy,
104
- nonelike,
105
- rc_binding,
106
- symbols_set,
107
- truthy,
108
- )