Open unownone opened 2 years ago
There's a lack of type hints in the code which makes the code less readable.
To increase Code Quality , add type hints to the code to make the code more readable and debuggable!
#/app/auth.py #python3.9 ... def login(user: User_dict, Authorize: AuthJWT = Depends()): hasher = Hasher() ...
here hasher = Hasher() can be changed into hasher:Hasher = Hasher()
hasher = Hasher()
hasher:Hasher = Hasher()
Hey there, i would be happy to contribute in this project. can you assign me to this issue?
@donheshanthaka Surely!
Summary
There's a lack of type hints in the code which makes the code less readable.
Requirement:
To increase Code Quality , add type hints to the code to make the code more readable and debuggable!
Example :
here
hasher = Hasher()
can be changed intohasher:Hasher = Hasher()