Skip to content

Commit

Permalink
always display the trace ID; close #18, close #19
Browse files Browse the repository at this point in the history
  • Loading branch information
vreuter committed Dec 3, 2024
1 parent 928ec01 commit 2726045
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion looptrace_regionals_vis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from numpydoc_decorator import doc # type: ignore[import-untyped]

__version__ = "0.4.0"
__version__ = "0.4.1"

_PACKAGE_NAME = package = Path(__file__).parent.name

Expand Down
2 changes: 1 addition & 1 deletion looptrace_regionals_vis/reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ def build_layers(folder) -> list[FullDataLayer]: # type: ignore[no-untyped-def]
features.update(
{
"traceId": [
r.traceId.get if r.trace_partners else "" # type: ignore[attr-defined]
r.traceId.get # type: ignore[attr-defined]
for r in rois
for _ in r.bounding_box.iter_z_slices_nonnegative()
]
Expand Down

0 comments on commit 2726045

Please sign in to comment.