tksheet 7.4.16__tar.gz → 7.4.17__tar.gz

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.
Files changed (26) hide show
  1. {tksheet-7.4.16/tksheet.egg-info → tksheet-7.4.17}/PKG-INFO +1 -1
  2. {tksheet-7.4.16 → tksheet-7.4.17}/pyproject.toml +1 -1
  3. {tksheet-7.4.16 → tksheet-7.4.17}/tksheet/__init__.py +1 -1
  4. {tksheet-7.4.16 → tksheet-7.4.17}/tksheet/main_table.py +1 -2
  5. {tksheet-7.4.16 → tksheet-7.4.17/tksheet.egg-info}/PKG-INFO +1 -1
  6. {tksheet-7.4.16 → tksheet-7.4.17}/LICENSE.txt +0 -0
  7. {tksheet-7.4.16 → tksheet-7.4.17}/README.md +0 -0
  8. {tksheet-7.4.16 → tksheet-7.4.17}/setup.cfg +0 -0
  9. {tksheet-7.4.16 → tksheet-7.4.17}/tksheet/colors.py +0 -0
  10. {tksheet-7.4.16 → tksheet-7.4.17}/tksheet/column_headers.py +0 -0
  11. {tksheet-7.4.16 → tksheet-7.4.17}/tksheet/constants.py +0 -0
  12. {tksheet-7.4.16 → tksheet-7.4.17}/tksheet/find_window.py +0 -0
  13. {tksheet-7.4.16 → tksheet-7.4.17}/tksheet/formatters.py +0 -0
  14. {tksheet-7.4.16 → tksheet-7.4.17}/tksheet/functions.py +0 -0
  15. {tksheet-7.4.16 → tksheet-7.4.17}/tksheet/other_classes.py +0 -0
  16. {tksheet-7.4.16 → tksheet-7.4.17}/tksheet/row_index.py +0 -0
  17. {tksheet-7.4.16 → tksheet-7.4.17}/tksheet/sheet.py +0 -0
  18. {tksheet-7.4.16 → tksheet-7.4.17}/tksheet/sheet_options.py +0 -0
  19. {tksheet-7.4.16 → tksheet-7.4.17}/tksheet/sorting.py +0 -0
  20. {tksheet-7.4.16 → tksheet-7.4.17}/tksheet/text_editor.py +0 -0
  21. {tksheet-7.4.16 → tksheet-7.4.17}/tksheet/themes.py +0 -0
  22. {tksheet-7.4.16 → tksheet-7.4.17}/tksheet/tksheet_types.py +0 -0
  23. {tksheet-7.4.16 → tksheet-7.4.17}/tksheet/top_left_rectangle.py +0 -0
  24. {tksheet-7.4.16 → tksheet-7.4.17}/tksheet.egg-info/SOURCES.txt +0 -0
  25. {tksheet-7.4.16 → tksheet-7.4.17}/tksheet.egg-info/dependency_links.txt +0 -0
  26. {tksheet-7.4.16 → tksheet-7.4.17}/tksheet.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tksheet
3
- Version: 7.4.16
3
+ Version: 7.4.17
4
4
  Summary: Tkinter table / sheet and treeview widget
5
5
  Author-email: ragardner <github@ragardner.simplelogin.com>
6
6
  License: Copyright (c) 2019 ragardner and open source contributors
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
6
6
  name = "tksheet"
7
7
  description = "Tkinter table / sheet and treeview widget"
8
8
  readme = "README.md"
9
- version = "7.4.16"
9
+ version = "7.4.17"
10
10
  authors = [{ name = "ragardner", email = "github@ragardner.simplelogin.com" }]
11
11
  requires-python = ">=3.8"
12
12
  license = {file = "LICENSE.txt"}
@@ -4,7 +4,7 @@
4
4
  tksheet - A Python tkinter table widget
5
5
  """
6
6
 
7
- __version__ = "7.4.16"
7
+ __version__ = "7.4.17"
8
8
 
9
9
  from .colors import (
10
10
  color_map,
@@ -7599,8 +7599,7 @@ class MainTable(tk.Canvas):
7599
7599
  self, datarn: int, datacn: int, event_data: EventDataDict
7600
7600
  ) -> tuple[Any, EventDataDict]:
7601
7601
  value = event_data.value
7602
- if self.edit_validation_func and (new_value := self.edit_validation_func(event_data)) is not None:
7603
- value = new_value
7602
+ if self.edit_validation_func and (value := self.edit_validation_func(event_data)) is not None:
7604
7603
  event_data["data"][(datarn, datacn)] = value
7605
7604
  event_data["value"] = value
7606
7605
  if self.bulk_table_edit_validation_func:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tksheet
3
- Version: 7.4.16
3
+ Version: 7.4.17
4
4
  Summary: Tkinter table / sheet and treeview widget
5
5
  Author-email: ragardner <github@ragardner.simplelogin.com>
6
6
  License: Copyright (c) 2019 ragardner and open source contributors
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes