enhancementgood first issue
Métricas do repositório
- Stars
- (21 estrelas)
- Métricas de merge de PR
- (Métricas PR pendentes)
Description
Since we are planning to bump the minimum version of Python to 3.10 (maybe 3.11 if you guys agree), we can leverage some new things to enhance the code, for example:
- use the new format of type hint where you don't need to import
typingand its classes but directly writemy_variable: list[str] | None; - use
switchinstead of having multipleif...elif...elif... - probably other things I'm not thinking about right now 😄