airbyte-source-google-sheets 0.9.4.dev202503182242__py3-none-any.whl → 0.9.5.dev202505141418__py3-none-any.whl

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: airbyte-source-google-sheets
3
- Version: 0.9.4.dev202503182242
3
+ Version: 0.9.5.dev202505141418
4
4
  Summary: Source implementation for Google Sheets.
5
5
  License: Elv2
6
6
  Author: Airbyte
@@ -9,8 +9,8 @@ source_google_sheets/models/spreadsheet_values.py,sha256=-XRMuuILn9JN8svHNTj6-oG
9
9
  source_google_sheets/run.py,sha256=eaPRcarWqkB2b2DokvI83w7rz1blmWPQCFahvCyCdSY,1887
10
10
  source_google_sheets/source.py,sha256=qO1KoGdphieu7F5VgDYtrbqs56AUvMWFGNvFHP2b9Z4,778
11
11
  source_google_sheets/spec.yaml,sha256=RIUILMhfS0is2r_mCkmIVrQfvND1D3eobDK1YElmzhU,5009
12
- source_google_sheets/utils.py,sha256=JEQIVLSFEAff-7zF3gPzsvFc9xLfCj9hVuFFYrSWiOo,2290
13
- airbyte_source_google_sheets-0.9.4.dev202503182242.dist-info/METADATA,sha256=CXK1y7JM3XsxfH84wZBGYKgptF2NLzohHKAjSzxysO4,5384
14
- airbyte_source_google_sheets-0.9.4.dev202503182242.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
15
- airbyte_source_google_sheets-0.9.4.dev202503182242.dist-info/entry_points.txt,sha256=Dtsfjohe5IPUFyqojk49SIoP7CifCTlNLG_pgivzppo,69
16
- airbyte_source_google_sheets-0.9.4.dev202503182242.dist-info/RECORD,,
12
+ source_google_sheets/utils.py,sha256=GuqlmGUdPNDHj3tYcS_LretKyfrGXcy881ML7zsWKRc,2308
13
+ airbyte_source_google_sheets-0.9.5.dev202505141418.dist-info/METADATA,sha256=-CzVefHY59ot3FYyUw8Ar2KM6AEGkt6MiJvg3eCwnFQ,5384
14
+ airbyte_source_google_sheets-0.9.5.dev202505141418.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
15
+ airbyte_source_google_sheets-0.9.5.dev202505141418.dist-info/entry_points.txt,sha256=Dtsfjohe5IPUFyqojk49SIoP7CifCTlNLG_pgivzppo,69
16
+ airbyte_source_google_sheets-0.9.5.dev202505141418.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 2.1.1
2
+ Generator: poetry-core 2.1.3
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -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: