about summary refs log tree commit diff
path: root/setup.py
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2025-12-15 12:22:25 -0600
committerFrederick Muriuki Muriithi2025-12-15 12:22:25 -0600
commit1f2c00e2657f1b7edcfcc9f9bd1a573625d7fb29 (patch)
treef16234f5fa09ffffc94628ac2b31da51b0e7a71b /setup.py
parent6fd20bd7973f73db1f9fbd1e35dae503ebb3bce9 (diff)
downloadgn-auth-1f2c00e2657f1b7edcfcc9f9bd1a573625d7fb29.tar.gz
Fix issues caught by mypy. HEAD main
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 59cd86f..c7339e2 100755
--- a/setup.py
+++ b/setup.py
@@ -44,5 +44,5 @@ setup(author="Frederick M. Muriithi",
       version="0.0.1",
       tests_require=["pytest", "hypothesis"],
       cmdclass={
-          "run_tests": RunTests  # testing
+          "run_tests": RunTests  # type: ignore[dict-item]
       })