Skip to content

Commit a58e550

Browse files
authored
Remove redundant Path.absolute() call
1 parent 0ab0b79 commit a58e550

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

print-hash.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import pathlib
33
import sys
44

5-
packages_dir = pathlib.Path(sys.argv[1]).resolve().absolute()
5+
packages_dir = pathlib.Path(sys.argv[1]).resolve()
66

77
print('Showing hash values of files to be uploaded:')
88

0 commit comments

Comments
 (0)