@@ -406,7 +406,6 @@ def __init__(
406
406
compressor = self ._compressor ,
407
407
dtype = object ,
408
408
object_codec = self ._metadata_codec ,
409
- fill_value = None ,
410
409
)
411
410
provenances_group .create_dataset (
412
411
"record" ,
@@ -415,7 +414,6 @@ def __init__(
415
414
compressor = self ._compressor ,
416
415
dtype = object ,
417
416
object_codec = self ._metadata_codec ,
418
- fill_value = None ,
419
417
)
420
418
421
419
def __enter__ (self ):
@@ -949,7 +947,6 @@ def __init__(self, sequence_length=0, **kwargs):
949
947
compressor = self ._compressor ,
950
948
dtype = object ,
951
949
object_codec = self ._metadata_codec ,
952
- fill_value = None ,
953
950
)
954
951
populations_group .attrs ["metadata_schema" ] = None
955
952
self ._populations_writer = BufferedItemWriter (
@@ -965,15 +962,13 @@ def __init__(self, sequence_length=0, **kwargs):
965
962
compressor = self ._compressor ,
966
963
dtype = object ,
967
964
object_codec = self ._metadata_codec ,
968
- fill_value = None ,
969
965
)
970
966
location = individuals_group .create_dataset (
971
967
"location" ,
972
968
shape = (0 ,),
973
969
chunks = chunks ,
974
970
compressor = self ._compressor ,
975
971
dtype = "array:f8" ,
976
- fill_value = None ,
977
972
)
978
973
time = individuals_group .create_dataset (
979
974
"time" ,
@@ -1050,7 +1045,6 @@ def __init__(self, sequence_length=0, **kwargs):
1050
1045
compressor = self ._compressor ,
1051
1046
dtype = object ,
1052
1047
object_codec = self ._metadata_codec ,
1053
- fill_value = None ,
1054
1048
)
1055
1049
sites_group .create_dataset (
1056
1050
"metadata" ,
@@ -1059,7 +1053,6 @@ def __init__(self, sequence_length=0, **kwargs):
1059
1053
compressor = self ._compressor ,
1060
1054
dtype = object ,
1061
1055
object_codec = self ._metadata_codec ,
1062
- fill_value = None ,
1063
1056
)
1064
1057
1065
1058
self ._last_position = 0
@@ -2215,15 +2208,13 @@ def __init__(self, sample_data, **kwargs):
2215
2208
chunks = chunks ,
2216
2209
dtype = "array:i4" ,
2217
2210
compressor = self ._compressor ,
2218
- fill_value = None ,
2219
2211
)
2220
2212
self .data .create_dataset (
2221
2213
"ancestors/haplotype" ,
2222
2214
shape = (0 ,),
2223
2215
chunks = chunks ,
2224
2216
dtype = "array:i1" ,
2225
2217
compressor = self ._compressor ,
2226
- fill_value = None ,
2227
2218
)
2228
2219
2229
2220
self ._alloc_ancestor_writer ()
0 commit comments