tksheet 7.4.22__tar.gz → 7.4.23__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.22/tksheet.egg-info → tksheet-7.4.23}/PKG-INFO +1 -1
  2. {tksheet-7.4.22 → tksheet-7.4.23}/pyproject.toml +1 -1
  3. {tksheet-7.4.22 → tksheet-7.4.23}/tksheet/__init__.py +1 -1
  4. {tksheet-7.4.22 → tksheet-7.4.23}/tksheet/main_table.py +2 -2
  5. {tksheet-7.4.22 → tksheet-7.4.23/tksheet.egg-info}/PKG-INFO +1 -1
  6. {tksheet-7.4.22 → tksheet-7.4.23}/LICENSE.txt +0 -0
  7. {tksheet-7.4.22 → tksheet-7.4.23}/README.md +0 -0
  8. {tksheet-7.4.22 → tksheet-7.4.23}/setup.cfg +0 -0
  9. {tksheet-7.4.22 → tksheet-7.4.23}/tksheet/colors.py +0 -0
  10. {tksheet-7.4.22 → tksheet-7.4.23}/tksheet/column_headers.py +0 -0
  11. {tksheet-7.4.22 → tksheet-7.4.23}/tksheet/constants.py +0 -0
  12. {tksheet-7.4.22 → tksheet-7.4.23}/tksheet/find_window.py +0 -0
  13. {tksheet-7.4.22 → tksheet-7.4.23}/tksheet/formatters.py +0 -0
  14. {tksheet-7.4.22 → tksheet-7.4.23}/tksheet/functions.py +0 -0
  15. {tksheet-7.4.22 → tksheet-7.4.23}/tksheet/other_classes.py +0 -0
  16. {tksheet-7.4.22 → tksheet-7.4.23}/tksheet/row_index.py +0 -0
  17. {tksheet-7.4.22 → tksheet-7.4.23}/tksheet/sheet.py +0 -0
  18. {tksheet-7.4.22 → tksheet-7.4.23}/tksheet/sheet_options.py +0 -0
  19. {tksheet-7.4.22 → tksheet-7.4.23}/tksheet/sorting.py +0 -0
  20. {tksheet-7.4.22 → tksheet-7.4.23}/tksheet/text_editor.py +0 -0
  21. {tksheet-7.4.22 → tksheet-7.4.23}/tksheet/themes.py +0 -0
  22. {tksheet-7.4.22 → tksheet-7.4.23}/tksheet/tksheet_types.py +0 -0
  23. {tksheet-7.4.22 → tksheet-7.4.23}/tksheet/top_left_rectangle.py +0 -0
  24. {tksheet-7.4.22 → tksheet-7.4.23}/tksheet.egg-info/SOURCES.txt +0 -0
  25. {tksheet-7.4.22 → tksheet-7.4.23}/tksheet.egg-info/dependency_links.txt +0 -0
  26. {tksheet-7.4.22 → tksheet-7.4.23}/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.22
3
+ Version: 7.4.23
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.22"
9
+ version = "7.4.23"
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.22"
7
+ __version__ = "7.4.23"
8
8
 
9
9
  from .colors import (
10
10
  color_map,
@@ -1324,7 +1324,7 @@ class MainTable(tk.Canvas):
1324
1324
  and self.input_valid_for_cell(r, datacn, val, ignore_empty=True)
1325
1325
  )
1326
1326
  ):
1327
- rows[r][datacn] = self.format_value(datarn, datacn, val)
1327
+ rows[r][datacn] = self.format_value(r, datacn, val)
1328
1328
  ctr += 1
1329
1329
  if ctr:
1330
1330
  event_data = self.add_rows(
@@ -1374,7 +1374,7 @@ class MainTable(tk.Canvas):
1374
1374
  and self.input_valid_for_cell(datarn, c, val, ignore_empty=True)
1375
1375
  )
1376
1376
  ):
1377
- columns[c][datarn] = self.format_value(datarn, datacn, val)
1377
+ columns[c][datarn] = self.format_value(datarn, c, val)
1378
1378
  ctr += 1
1379
1379
  if ctr:
1380
1380
  event_data = self.add_columns(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tksheet
3
- Version: 7.4.22
3
+ Version: 7.4.23
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