Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/toast/scripts/toast_timing_plot.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3

# Copyright (c) 2021-2021 by the parties listed in the AUTHORS file.
# Copyright (c) 2021-2026 by the parties listed in the AUTHORS file.
# All rights reserved. Use of this source code is governed by
# a BSD-style license that can be found in the LICENSE file.

Expand Down Expand Up @@ -147,10 +147,10 @@ def append_counter(path, node):
df = pd.DataFrame(data=data, columns=cnames)

img_px = 800
pio.kaleido.scope.default_format = "pdf"
pio.kaleido.scope.default_width = img_px
pio.kaleido.scope.default_height = img_px
pio.kaleido.scope.mathjax = None
pio.defaults.default_format = "pdf"
pio.defaults.default_width = img_px
pio.defaults.default_height = img_px
pio.defaults.mathjax = None

fig = px.sunburst(
data_frame=df,
Expand Down