I noticed that there is an inconsistent use of Type Hits within this program.
Some modules and functions have type hints in place, others do not.
Specifically, the run command doesn't have type hints, while many of the other commands do.
|
def run(cwd=os.getcwd(), strict=True, verbose=False, **kwargs): |
Have you considered adding type hints?
I noticed that there is an inconsistent use of Type Hits within this program.
Some modules and functions have type hints in place, others do not.
Specifically, the
runcommand doesn't have type hints, while many of the other commands do.sysrsync/sysrsync/runner.py
Line 9 in c978be1
Have you considered adding type hints?