airbyte-source-google-sheets 0.9.4.dev202503182154__tar.gz → 0.9.5.dev202505141418__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 (15) hide show
  1. {airbyte_source_google_sheets-0.9.4.dev202503182154 → airbyte_source_google_sheets-0.9.5.dev202505141418}/PKG-INFO +1 -1
  2. {airbyte_source_google_sheets-0.9.4.dev202503182154 → airbyte_source_google_sheets-0.9.5.dev202505141418}/pyproject.toml +1 -1
  3. {airbyte_source_google_sheets-0.9.4.dev202503182154 → airbyte_source_google_sheets-0.9.5.dev202505141418}/source_google_sheets/utils.py +1 -1
  4. {airbyte_source_google_sheets-0.9.4.dev202503182154 → airbyte_source_google_sheets-0.9.5.dev202505141418}/README.md +0 -0
  5. {airbyte_source_google_sheets-0.9.4.dev202503182154 → airbyte_source_google_sheets-0.9.5.dev202505141418}/source_google_sheets/__init__.py +0 -0
  6. {airbyte_source_google_sheets-0.9.4.dev202503182154 → airbyte_source_google_sheets-0.9.5.dev202505141418}/source_google_sheets/components/__init__.py +0 -0
  7. {airbyte_source_google_sheets-0.9.4.dev202503182154 → airbyte_source_google_sheets-0.9.5.dev202505141418}/source_google_sheets/components/extractors.py +0 -0
  8. {airbyte_source_google_sheets-0.9.4.dev202503182154 → airbyte_source_google_sheets-0.9.5.dev202505141418}/source_google_sheets/components/partition_routers.py +0 -0
  9. {airbyte_source_google_sheets-0.9.4.dev202503182154 → airbyte_source_google_sheets-0.9.5.dev202505141418}/source_google_sheets/manifest.yaml +0 -0
  10. {airbyte_source_google_sheets-0.9.4.dev202503182154 → airbyte_source_google_sheets-0.9.5.dev202505141418}/source_google_sheets/models/__init__.py +0 -0
  11. {airbyte_source_google_sheets-0.9.4.dev202503182154 → airbyte_source_google_sheets-0.9.5.dev202505141418}/source_google_sheets/models/spreadsheet.py +0 -0
  12. {airbyte_source_google_sheets-0.9.4.dev202503182154 → airbyte_source_google_sheets-0.9.5.dev202505141418}/source_google_sheets/models/spreadsheet_values.py +0 -0
  13. {airbyte_source_google_sheets-0.9.4.dev202503182154 → airbyte_source_google_sheets-0.9.5.dev202505141418}/source_google_sheets/run.py +0 -0
  14. {airbyte_source_google_sheets-0.9.4.dev202503182154 → airbyte_source_google_sheets-0.9.5.dev202505141418}/source_google_sheets/source.py +0 -0
  15. {airbyte_source_google_sheets-0.9.4.dev202503182154 → airbyte_source_google_sheets-0.9.5.dev202505141418}/source_google_sheets/spec.yaml +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: airbyte-source-google-sheets
3
- Version: 0.9.4.dev202503182154
3
+ Version: 0.9.5.dev202505141418
4
4
  Summary: Source implementation for Google Sheets.
5
5
  License: Elv2
6
6
  Author: Airbyte
@@ -5,7 +5,7 @@ requires = [
5
5
  build-backend = "poetry.core.masonry.api"
6
6
 
7
7
  [tool.poetry]
8
- version = "0.9.4.dev202503182154"
8
+ version = "0.9.5.dev202505141418"
9
9
  name = "airbyte-source-google-sheets"
10
10
  description = "Source implementation for Google Sheets."
11
11
  authors = [
@@ -38,7 +38,7 @@ def name_conversion(text: str) -> str:
38
38
 
39
39
 
40
40
  def safe_name_conversion(text: str) -> str:
41
- if not text:
41
+ if not text or text.isspace():
42
42
  return text
43
43
  new = name_conversion(text)
44
44
  if not new: