You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In chaco/axis.py, PlotAxis._compute_tick_positions() the logger.warning message written if datalow > datahigh is using regular strings instead of f-strings, so the warning message is not formatted correctly.
It should be:
ifdatalow>datahigh:
logger.warning(
f"{self.mapper} has an invalid data range with "f"low={datalow} > high={datahigh}; unable to compute axis ""ticks."
)
The text was updated successfully, but these errors were encountered:
In
chaco/axis.py
,PlotAxis._compute_tick_positions()
thelogger.warning
message writtenif datalow > datahigh
is using regular strings instead of f-strings, so the warning message is not formatted correctly.It should be:
The text was updated successfully, but these errors were encountered: