Files
Christian Clauss 46239caa19 Re ruff (#2292)
* Ruff fixes

* Ruff fixes

* from __future__ import annotations breaks MicroPython

* noqa: FURB188 because there is no str.replacesuffix() in MicroPython

* Add ruff to pre-commit
2025-02-20 09:43:09 +01:00

7 lines
124 B
Python

import numpy as np
import matplotlib as mpl
# just do something with the packages
print(len(dir(np)))
print(len(dir(mpl)))