Replies: 1 comment
-
Sounds good, @adriangb, can you open a PR? @aabmass this may be of your interest. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I've noticed that the typing in the otel packages needs some love. It'd be nice to at least get the API and SDK touched up since those are used directly by users.
One thing I'd like to propose right off the bat is that we adopt PEP 563 (
from __future__ import annotations
) everywhere because it:dict[str, str] | None
so less imports and boilerplateThis is a change that can pretty much be applied programmatically, things like
pyupgrade
andruff
can do it.Beta Was this translation helpful? Give feedback.
All reactions