Stefano Tronci
Stefano Tronci
Hi there. I never used python, I hope this is doing the test it is meant to: ``` python #!/usr/bin/env python import matplotlib matplotlib.use('qt4agg') import matplotlib.pyplot as plt plt.plot([1, 2,...
Unfortunately my understanding of environment variables and shared libraries is rather sloppy, however: ``` bash locate libpangoft2-1.0.so.0 /usr/lib/libpangoft2-1.0.so.0 /usr/lib/libpangoft2-1.0.so.0.4000.1 /usr/lib32/libpangoft2-1.0.so.0 /usr/lib32/libpangoft2-1.0.so.0.4000.1 ``` If I am not wrong, everything in `/usr/lib`,...
Hi! I am trying to figure out how to type hint with pint and I haven't found a solution yet. I tried some of the [stuff from here](https://github.com/hgrecco/pint/issues/1166) but I...
Hi guys. Sharing my solution in case anybody else searching for a solution to this bumps into this thread. The solution I ended up with is to use [`Annotated`](https://docs.python.org/3/library/typing.html#typing.Annotated). For...