E_TIME_001 — Unknown interval unit¶
An interval string like "5x" was passed where the unit suffix is not
recognised. FLOX accepts:
| Unit | Meaning |
|---|---|
s |
seconds |
m |
minutes |
h |
hours |
d |
days |
How to fix¶
Common causes¶
- Pandas-style suffixes (
"5min","1H") — FLOX uses single-character units to avoid theM(month) /m(minute) ambiguity. - Whitespace in the string.
- Empty unit (
"5") — always provide a unit.