8000 Remove redundant `Path.absolute()` call · pypa/gh-action-pypi-publish@a58e550 · GitHub
[go: up one dir, main page]

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

Lines changed: 1 addition & 1 deletion
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)
0