Skip to content

Commit 700a7d2

Browse files
authored
Merge pull request #36 from ProjectPythia/csv_kwargs
Remove Csv kwargs
2 parents d716cdf + 71e0e77 commit 700a7d2

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

environment.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,6 @@ dependencies:
1616
- requests
1717
- aiohttp
1818
- sphinx-pythia-theme
19+
- numpy<2
1920
- pip:
2021
- intake-markdown

notebooks/catalog.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ metadata:
55
sources:
66
data_dictionary:
77
args:
8-
csv_kwargs:
9-
keep_default_na: false
8+
keep_default_na: false
109
urlpath: '{{ CATALOG_DIR }}/inventory.csv'
1110
description: Describes the data in the hrrrzarr source
1211
driver: intake.source.csv.CSVSource

notebooks/creating_catalogs.ipynb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -296,8 +296,7 @@
296296
},
297297
"outputs": [],
298298
"source": [
299-
"source = intake.open_csv('inventory.csv',\n",
300-
" csv_kwargs={'keep_default_na': False})\n",
299+
"source = intake.open_csv('inventory.csv')\n",
301300
"source.name = 'data_dictionary'\n",
302301
"source.description = 'Describes the data in the hrrrzarr source'"
303302
]

0 commit comments

Comments
 (0)