diff --git a/geomagio/edge/FDSNFactory.py b/geomagio/edge/FDSNFactory.py
index 74c7daa82a0c6792c7356b93cb93cc96f94e26a3..6b9016e880261f480d79ad61e6d1e2bfef247b2a 100644
--- a/geomagio/edge/FDSNFactory.py
+++ b/geomagio/edge/FDSNFactory.py
@@ -384,21 +384,5 @@ class FDSNFactory(TimeseriesFactory):
         # Set azimuth in trace.stats.azimuth
         trace.stats.azimuth = azimuth
 
-        # Add comments to trace.stats
-        if "comments" in trace.stats:
-            trace.stats.comments.extend(
-                [
-                    "DISCLAIMER",
-                    "This is provisional data. Any data secured from the USGS database that are identified as provisional have not received Director's approval and are subject to revision. Source and Authority: U.S. Geological Survey Manual, Section 500.24",
-                    "DISCLAIMER",
-                ]
-            )
-        else:
-            trace.stats.comments = [
-                "DISCLAIMER",
-                "This is provisional data. Any data secured from the USGS database that are identified as provisional have not received Director's approval and are subject to revision. Source and Authority: U.S. Geological Survey Manual, Section 500.24",
-                "DISCLAIMER",
-            ]
-
         # Return both azimuth and dip
         return azimuth, dip