From 7cf6d4a49d4d0e8119075142fc80efdc7f8af540 Mon Sep 17 00:00:00 2001 From: Vlad Emelianov Date: Thu, 3 Dec 2020 13:09:00 +0300 Subject: [PATCH] Ignore Path typing issue --- mypy_boto3_builder/utils/nice_path.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mypy_boto3_builder/utils/nice_path.py b/mypy_boto3_builder/utils/nice_path.py index dd8e5b90..3d9d0abc 100644 --- a/mypy_boto3_builder/utils/nice_path.py +++ b/mypy_boto3_builder/utils/nice_path.py @@ -4,7 +4,7 @@ from pathlib import Path -class NicePath(type(Path())): +class NicePath(type(Path())): # type: ignore """ Path that represents it as relative to workdir. """