issues
search
adnilsson
/
Bank2YNAB4
Converts from banks' CSV format of exported transactions to the frormat accepted by YNAB4
MIT License
0
stars
0
forks
source link
Refactor with Python 3.9 and 3.10 features
#5
Closed
adnilsson
closed
3 years ago
adnilsson
commented
3 years ago
Changes
Typing
[x] Use built-in types in type hints, for example
tuple
and
list
instead of
typing.Tuple
and
typing.List
[x] Less verbose
Optional
with
x | None
union syntax
Control flow
[x] Make use of
Structural Pattern Matching
where doing so makes more sense
Changes
Typing
tuple
andlist
instead oftyping.Tuple
andtyping.List
Optional
withx | None
union syntaxControl flow