Skip to content
Snippets Groups Projects
Commit b0b6d869 authored by Alán Muñoz's avatar Alán Muñoz
Browse files

feat(DynamicWriter): Only load meta if file exists

parent 8eeb2bf8
No related branches found
No related tags found
No related merge requests found
import itertools
import logging
from collections.abc import Iterable
from pathlib import Path
from time import perf_counter
from typing import Dict
......@@ -29,10 +30,12 @@ class DynamicWriter:
group = ""
compression = "gzip"
compression_opts = 9
metadata = None
def __init__(self, file: str):
self.file = file
self.metadata = load_attributes(file)
if Path(file).exists():
self.metadata = load_attributes(file)
def _append(self, data, key, hgroup):
"""Append data to existing dataset."""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment