diff --git a/src/backscattering_analyzer/display.py b/src/backscattering_analyzer/display.py index d574dd7..6fe5932 100644 --- a/src/backscattering_analyzer/display.py +++ b/src/backscattering_analyzer/display.py @@ -59,9 +59,9 @@ def show_projection( label=_("detected sensibility without excitation"), ) # type: ignore[ReportUnusedCallResult] legend() # type: ignore[ReportUnusedCallResult] - title(experiment.bench) #  type: ignore[ReportUnusedCallResult] + title(experiment.bench) # type: ignore[ReportUnusedCallResult] xlabel(_("frequencies (Hz)")) # type: ignore[ReportUnusedCallResult] - ylabel(_("sensibility ($\\frac{1} {\\sqrt {Hz}}$)")) #  type: ignore[ReportUnusedCallResult] + ylabel(_("sensibility ($\\frac{1} {\\sqrt {Hz}}$)")) # type: ignore[ReportUnusedCallResult] xlim(5, 100) # type: ignore[ReportUnusedCallResult] ylim(10e-28, 10e-18) # type: ignore[ReportUnusedCallResult] grid(True, "both") # type: ignore[ReportUnusedCallResult]