Skip to content

Commit

Permalink
fix: mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
Justintime50 committed Jun 10, 2024
1 parent ce52157 commit a96fa18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pip_tree/tree.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def get_pip_package_list(path: str = SITE_PACKAGES_PATH) -> Generator[pkg_resour

def get_package_details(package: pkg_resources.Distribution) -> Dict[str, Any]:
"""Build a dictionary of details for a package from Pip."""
package_updated_at = time.ctime(os.path.getctime(package.location))
package_updated_at = time.ctime(os.path.getctime(package.location)) # type: ignore
requires_list = [sorted(str(requirement) for requirement in package.requires())]

package_details = {
Expand Down

0 comments on commit a96fa18

Please sign in to comment.