Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jan 6, 2025
1 parent b8756b2 commit 0e11f16
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/miranda/archive/_groupings.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
from miranda.storage import report_file_size

dictConfig(LOGGING_CONFIG)
Nested_List = List[List[Path]]
PathDict = Dict[str, List[Path]]
Nested_List = list[list[Path]]
PathDict = dict[str, list[Path]]


GiB = int(pow(2, 30))
Expand Down
3 changes: 2 additions & 1 deletion src/miranda/convert/corrections.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@

import datetime
import pathlib
from collections.abc import Iterator, Sequence
from functools import partial
from typing import Callable, Iterator, Sequence
from typing import Callable

import xarray as xr

Expand Down

0 comments on commit 0e11f16

Please sign in to comment.