From c78616680c188bcea3ffdb8f55778b0659ffc262 Mon Sep 17 00:00:00 2001 From: Avasam Date: Mon, 26 Aug 2024 16:22:48 -0400 Subject: [PATCH] link to platformdirs issue and re-enable mypy test --- jaraco/abode/config.py | 2 +- pyproject.toml | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/jaraco/abode/config.py b/jaraco/abode/config.py index 450a2ae..2540611 100644 --- a/jaraco/abode/config.py +++ b/jaraco/abode/config.py @@ -1,7 +1,7 @@ import platformdirs -class PlatformDirs(platformdirs.PlatformDirs): # type: ignore[misc, valid-type] +class PlatformDirs(platformdirs.PlatformDirs): # type: ignore[misc, valid-type] # platformdirs/platformdirs#295 """ >>> dirs = PlatformDirs(appname='Abode', appauthor=False) >>> alt_udp = getfixture('tmp_path') / 'data' / 'dir' diff --git a/pyproject.toml b/pyproject.toml index 5337927..5d7fc8b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -90,7 +90,3 @@ abode = "jaraco.abode.cli:main" [tool.setuptools_scm] - - -[tool.pytest-enabler.mypy] -# Disabled due to jaraco/skeleton#143