Skip to content

Commit

Permalink
black and import
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyCBakerPhD authored Jul 18, 2023
1 parent 5d48f40 commit 71e8c3d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions dandi/pynwb_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import os.path as op
from pathlib import Path
import re
from typing import IO, Any, Dict, List, Optional, Tuple, TypeVar, Union, cast
from typing import IO, Any, Dict, List, Literal, Optional, Tuple, TypeVar, Union, cast
import warnings

import dandischema
Expand Down Expand Up @@ -483,7 +483,11 @@ def get_object_id(path: str | Path | Readable) -> Any:


def make_nwb_file(
filename: StrPath, *args: Any, cache_spec: bool = False, backend: Literal["hdf5", "zarr"] = "hdf5", **kwargs: Any
filename: StrPath,
*args: Any,
cache_spec: bool = False,
backend: Literal["hdf5", "zarr"] = "hdf5",
**kwargs: Any,
) -> StrPath:
"""A little helper to produce an .nwb file in the path using NWBFile
Expand Down

0 comments on commit 71e8c3d

Please sign in to comment.