tksheet 7.4.10__tar.gz → 7.4.11__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.10/tksheet.egg-info → tksheet-7.4.11}/PKG-INFO +1 -1
  2. {tksheet-7.4.10 → tksheet-7.4.11}/pyproject.toml +1 -1
  3. {tksheet-7.4.10 → tksheet-7.4.11}/tksheet/__init__.py +1 -1
  4. {tksheet-7.4.10 → tksheet-7.4.11}/tksheet/main_table.py +1 -1
  5. {tksheet-7.4.10 → tksheet-7.4.11/tksheet.egg-info}/PKG-INFO +1 -1
  6. {tksheet-7.4.10 → tksheet-7.4.11}/LICENSE.txt +0 -0
  7. {tksheet-7.4.10 → tksheet-7.4.11}/README.md +0 -0
  8. {tksheet-7.4.10 → tksheet-7.4.11}/setup.cfg +0 -0
  9. {tksheet-7.4.10 → tksheet-7.4.11}/tksheet/colors.py +0 -0
  10. {tksheet-7.4.10 → tksheet-7.4.11}/tksheet/column_headers.py +0 -0
  11. {tksheet-7.4.10 → tksheet-7.4.11}/tksheet/constants.py +0 -0
  12. {tksheet-7.4.10 → tksheet-7.4.11}/tksheet/find_window.py +0 -0
  13. {tksheet-7.4.10 → tksheet-7.4.11}/tksheet/formatters.py +0 -0
  14. {tksheet-7.4.10 → tksheet-7.4.11}/tksheet/functions.py +0 -0
  15. {tksheet-7.4.10 → tksheet-7.4.11}/tksheet/other_classes.py +0 -0
  16. {tksheet-7.4.10 → tksheet-7.4.11}/tksheet/row_index.py +0 -0
  17. {tksheet-7.4.10 → tksheet-7.4.11}/tksheet/sheet.py +0 -0
  18. {tksheet-7.4.10 → tksheet-7.4.11}/tksheet/sheet_options.py +0 -0
  19. {tksheet-7.4.10 → tksheet-7.4.11}/tksheet/sorting.py +0 -0
  20. {tksheet-7.4.10 → tksheet-7.4.11}/tksheet/text_editor.py +0 -0
  21. {tksheet-7.4.10 → tksheet-7.4.11}/tksheet/themes.py +0 -0
  22. {tksheet-7.4.10 → tksheet-7.4.11}/tksheet/tksheet_types.py +0 -0
  23. {tksheet-7.4.10 → tksheet-7.4.11}/tksheet/top_left_rectangle.py +0 -0
  24. {tksheet-7.4.10 → tksheet-7.4.11}/tksheet.egg-info/SOURCES.txt +0 -0
  25. {tksheet-7.4.10 → tksheet-7.4.11}/tksheet.egg-info/dependency_links.txt +0 -0
  26. {tksheet-7.4.10 → tksheet-7.4.11}/tksheet.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: tksheet
3
- Version: 7.4.10
3
+ Version: 7.4.11
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.10"
9
+ version = "7.4.11"
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.10"
7
+ __version__ = "7.4.11"
8
8
 
9
9
  from .colors import (
10
10
  color_map,
@@ -5517,7 +5517,7 @@ class MainTable(tk.Canvas):
5517
5517
  event_data["deleted"]["index"] = {datarn: self._row_index[datarn] for datarn in rows}
5518
5518
  event_data = self.RI.tree_del_rows(event_data=event_data)
5519
5519
 
5520
- elif isinstance(self.MT._row_index, list):
5520
+ elif isinstance(self._row_index, list):
5521
5521
  for i, datarn in enumerate(rows):
5522
5522
  r = datarn - i
5523
5523
  if len(self._row_index) > r:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: tksheet
3
- Version: 7.4.10
3
+ Version: 7.4.11
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