From 44fbd5a370a7ec3d70068c4d0e8b027cce32f41a Mon Sep 17 00:00:00 2001
From: Nicholas Shavers <nshavers@contractor.usgs.gov>
Date: Tue, 30 Jul 2024 13:24:42 -0700
Subject: [PATCH] Ignoring vulnerability 71199 as _eventloop.get_asynclib is
 not used directly or indirectly by FastAPI, HTTPX, or Watchfiles.

---
 pyproject.toml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/pyproject.toml b/pyproject.toml
index bea15e1d..d55e05c2 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -83,7 +83,8 @@ copy-instrument = "geomagio.processing.copy_instrument:main"
 [tool.poe.tasks]
 # e.g. "poetry run poe lint"
 audit = [
-  { shell = "safety check --ignore 51668 --ignore 67599"}
+  # Ignore 71199 as _eventloop.get_asynclib is not used directly or indirectly by FastAPI, HTTPX, or Watchfiles.
+  { shell = "safety check --ignore 51668 --ignore 67599 --ignore 71199"}
 ]
 lint = [
   { shell = "black --check ." },
-- 
GitLab