mirror of
https://github.com/MODSetter/SurfSense.git
synced 2025-09-01 10:09:08 +00:00
fix ruff isues
This commit is contained in:
parent
dabb30c043
commit
e96590ff86
2 changed files with 2 additions and 4 deletions
|
@ -11,8 +11,8 @@ from collections.abc import Sequence
|
||||||
from alembic import op
|
from alembic import op
|
||||||
|
|
||||||
# revision identifiers, used by Alembic.
|
# revision identifiers, used by Alembic.
|
||||||
revision: str = '15'
|
revision: str = "15"
|
||||||
down_revision: str | None = '14'
|
down_revision: str | None = "14"
|
||||||
branch_labels: str | Sequence[str] | None = None
|
branch_labels: str | Sequence[str] | None = None
|
||||||
depends_on: str | Sequence[str] | None = None
|
depends_on: str | Sequence[str] | None = None
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
import asyncio
|
import asyncio
|
||||||
import json
|
|
||||||
from typing import Any
|
from typing import Any
|
||||||
|
|
||||||
from linkup import LinkupClient
|
from linkup import LinkupClient
|
||||||
|
@ -1223,7 +1222,6 @@ class ConnectorService:
|
||||||
sources_list = []
|
sources_list = []
|
||||||
|
|
||||||
for chunk in clickup_chunks:
|
for chunk in clickup_chunks:
|
||||||
|
|
||||||
# Extract document metadata
|
# Extract document metadata
|
||||||
document = chunk.get("document", {})
|
document = chunk.get("document", {})
|
||||||
metadata = document.get("metadata", {})
|
metadata = document.get("metadata", {})
|
||||||
|
|
Loading…
Add table
Reference in a new issue