remove references to fs from figsaver

This commit is contained in:
Valentin Boettcher 2022-04-07 16:46:39 +02:00
parent 85398ad3d1
commit 3a4b6bb5c0

View file

@ -326,7 +326,7 @@ def plot_interaction_consistency(
(diff.value < diff.σ).sum() / len(diff.value[0]) * 100
)
_, _, (line, _) = fs.plot_with_σ(
_, _, (line, _) = plot_with_σ(
data.time[:],
energy,
ax=ax,
@ -336,7 +336,7 @@ def plot_interaction_consistency(
bath=0,
)
fs.plot_with_σ(
plot_with_σ(
data.time[:],
interaction_ref,
ax=ax,
@ -389,7 +389,7 @@ def plot_flow_bcf(models, label_fn=lambda model: f"$ω_c={model.ω_c:.2f}$", **k
for model in models:
with aux.get_data(model) as data:
flow = model.bath_energy_flow(data, **kwargs)
_, _, (line, _) = fs.plot_with_σ(
_, _, (line, _) = plot_with_σ(
data.time[:],
flow,
ax=ax,