python-google-sheets 1.0.0__tar.gz → 1.0.1__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 (23) hide show
  1. {python_google_sheets-1.0.0 → python_google_sheets-1.0.1}/PKG-INFO +1 -1
  2. {python_google_sheets-1.0.0 → python_google_sheets-1.0.1}/google_sheets/spreadsheet_requests/conditional_format_rule.py +1 -1
  3. {python_google_sheets-1.0.0 → python_google_sheets-1.0.1}/pyproject.toml +1 -1
  4. {python_google_sheets-1.0.0 → python_google_sheets-1.0.1}/python_google_sheets.egg-info/PKG-INFO +1 -1
  5. {python_google_sheets-1.0.0 → python_google_sheets-1.0.1}/LICENSE +0 -0
  6. {python_google_sheets-1.0.0 → python_google_sheets-1.0.1}/README.md +0 -0
  7. {python_google_sheets-1.0.0 → python_google_sheets-1.0.1}/google_sheets/__init__.py +0 -0
  8. {python_google_sheets-1.0.0 → python_google_sheets-1.0.1}/google_sheets/api_request.py +0 -0
  9. {python_google_sheets-1.0.0 → python_google_sheets-1.0.1}/google_sheets/google_sheets.py +0 -0
  10. {python_google_sheets-1.0.0 → python_google_sheets-1.0.1}/google_sheets/spreadsheet_requests/__init__.py +0 -0
  11. {python_google_sheets-1.0.0 → python_google_sheets-1.0.1}/google_sheets/spreadsheet_requests/dimension.py +0 -0
  12. {python_google_sheets-1.0.0 → python_google_sheets-1.0.1}/google_sheets/spreadsheet_requests/general_models.py +0 -0
  13. {python_google_sheets-1.0.0 → python_google_sheets-1.0.1}/google_sheets/spreadsheet_requests/merge_cells.py +0 -0
  14. {python_google_sheets-1.0.0 → python_google_sheets-1.0.1}/google_sheets/spreadsheet_requests/spreadsheet.py +0 -0
  15. {python_google_sheets-1.0.0 → python_google_sheets-1.0.1}/google_sheets/spreadsheet_requests/update_cells.py +0 -0
  16. {python_google_sheets-1.0.0 → python_google_sheets-1.0.1}/google_sheets/spreadsheet_requests/update_sheet_properties.py +0 -0
  17. {python_google_sheets-1.0.0 → python_google_sheets-1.0.1}/google_sheets/styles.py +0 -0
  18. {python_google_sheets-1.0.0 → python_google_sheets-1.0.1}/google_sheets/utils.py +0 -0
  19. {python_google_sheets-1.0.0 → python_google_sheets-1.0.1}/python_google_sheets.egg-info/SOURCES.txt +0 -0
  20. {python_google_sheets-1.0.0 → python_google_sheets-1.0.1}/python_google_sheets.egg-info/dependency_links.txt +0 -0
  21. {python_google_sheets-1.0.0 → python_google_sheets-1.0.1}/python_google_sheets.egg-info/requires.txt +0 -0
  22. {python_google_sheets-1.0.0 → python_google_sheets-1.0.1}/python_google_sheets.egg-info/top_level.txt +0 -0
  23. {python_google_sheets-1.0.0 → python_google_sheets-1.0.1}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-google-sheets
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: A lightweight and efficient Python wrapper for the Google Sheets API v4
5
5
  Author-email: Timofey Egorov <timegorr@gmail.com>
6
6
  License-Expression: MIT
@@ -100,7 +100,7 @@ class ConditionType(StrEnum):
100
100
 
101
101
  class BooleanCondition(BaseModel):
102
102
  type: ConditionType
103
- values: list[ConditionValue]
103
+ values: list[ConditionValue] = Field(default_factory=list)
104
104
 
105
105
 
106
106
  class BooleanRule(BaseModel):
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
6
6
  name = "python-google-sheets"
7
7
  description = "A lightweight and efficient Python wrapper for the Google Sheets API v4"
8
8
  authors = [{ name = "Timofey Egorov", email = "timegorr@gmail.com" }]
9
- version = "1.0.0"
9
+ version = "1.0.1"
10
10
  readme = "README.md"
11
11
  requires-python = ">=3.11"
12
12
  classifiers = [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-google-sheets
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: A lightweight and efficient Python wrapper for the Google Sheets API v4
5
5
  Author-email: Timofey Egorov <timegorr@gmail.com>
6
6
  License-Expression: MIT