Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
VorobiovM committed Feb 29, 2024
1 parent 114a683 commit 74f8a9a
Showing 1 changed file with 19 additions and 6 deletions.
25 changes: 19 additions & 6 deletions src/asammdf/blocks/mdf_v4.py
Original file line number Diff line number Diff line change
Expand Up @@ -4863,7 +4863,15 @@ def _append_structure_composition(
invalidation_bytes_nr: int,
inval_bits: list[NDArray[Any]],
inval_cntr: int,
) -> tuple[int, int, int, tuple[int, int], list[NDArray[Any]], list[tuple[str, dtype[Any], tuple[int, ...]]], int,]:
) -> tuple[
int,
int,
int,
tuple[int, int],
list[NDArray[Any]],
list[tuple[str, dtype[Any], tuple[int, ...]]],
int,
]:
si_map = self._si_map

fields = []
Expand Down Expand Up @@ -5282,7 +5290,14 @@ def _append_structure_composition_column_oriented(
dg_cntr: int,
ch_cntr: int,
defined_texts: dict[str, int],
) -> tuple[int, int, int, tuple[int, int], list[NDArray[Any]], list[tuple[str, dtype[Any], tuple[int, ...]]],]:
) -> tuple[
int,
int,
int,
tuple[int, int],
list[NDArray[Any]],
list[tuple[str, dtype[Any], tuple[int, ...]]],
]:
si_map = self._si_map

fields = []
Expand Down Expand Up @@ -6426,8 +6441,7 @@ def get(
record_offset: int = ...,
record_count: int | None = ...,
skip_channel_validation: bool = ...,
) -> Signal:
...
) -> Signal: ...

@overload
def get(
Expand All @@ -6443,8 +6457,7 @@ def get(
record_offset: int = ...,
record_count: int | None = ...,
skip_channel_validation: bool = ...,
) -> tuple[NDArray[Any], NDArray[Any]]:
...
) -> tuple[NDArray[Any], NDArray[Any]]: ...

def get(
self,
Expand Down

0 comments on commit 74f8a9a

Please sign in to comment.