Random #python thing I just realized about f-strings. When interpolating a variable, you can append = to change the formatting to the repr version instead of the string version:
```
>>> from datetime import datetime
>>> now = datetime.now()
>>> f"{now}" #str() version
'2025-10-24 07:33:30.443638'
>>> f"{now=}" #repr() version
'now=datetime.datetime(2025, 10, 24, 7, 33, 30, 443638)'
>>>
```