Remove redundant `Path.absolute()` call

This commit is contained in:
Facundo Tuesca 2024-09-03 16:21:03 +02:00 committed by GitHub
parent 0ab0b79471
commit a58e550ac2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ import hashlib
import pathlib import pathlib
import sys import sys
packages_dir = pathlib.Path(sys.argv[1]).resolve().absolute() packages_dir = pathlib.Path(sys.argv[1]).resolve()
print('Showing hash values of files to be uploaded:') print('Showing hash values of files to be uploaded:')