diff --git a/pyproject.toml b/pyproject.toml
index bea15e1db8fa9cabc0215c0c487a3577d2d304f7..d55e05c2bc362908426ac51b00ba5a959c50028d 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 ." },