Fix linting

This commit is contained in:
yangdx
2025-03-26 23:53:41 +08:00
parent e7f68f7b77
commit dfa63e863c
2 changed files with 12 additions and 4 deletions

View File

@@ -75,7 +75,12 @@ class LightragPathFilter(logging.Filter):
def __init__(self):
super().__init__()
# Define paths to be filtered
self.filtered_paths = ["/documents", "/health", "/webui/", "/documents/pipeline_status"]
self.filtered_paths = [
"/documents",
"/health",
"/webui/",
"/documents/pipeline_status",
]
# self.filtered_paths = ["/health", "/webui/"]
def filter(self, record):