Skip to content

Commit 72dfef3

Browse files
committed
fix: remove aligned dict spacing (ruff E241)
1 parent d8681af commit 72dfef3

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

  • examples/servers/postgres-knowledge-server/mcp_postgres_server

examples/servers/postgres-knowledge-server/mcp_postgres_server/server.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,9 @@ def ensure_schema(conn):
9393
"required": ["app_id", "id", "title", "body"],
9494
"properties": {
9595
"app_id": {"type": "string", "description": "Authorized app identifier"},
96-
"id": {"type": "string", "description": "Unique record ID"},
97-
"title": {"type": "string", "description": "Record title"},
98-
"body": {"type": "string", "description": "Record content"},
96+
"id": {"type": "string", "description": "Unique record ID"},
97+
"title": {"type": "string", "description": "Record title"},
98+
"body": {"type": "string", "description": "Record content"},
9999
},
100100
},
101101
),
@@ -108,7 +108,7 @@ def ensure_schema(conn):
108108
"required": ["app_id", "id"],
109109
"properties": {
110110
"app_id": {"type": "string"},
111-
"id": {"type": "string"},
111+
"id": {"type": "string"},
112112
},
113113
},
114114
),
@@ -121,8 +121,8 @@ def ensure_schema(conn):
121121
"required": ["app_id", "query"],
122122
"properties": {
123123
"app_id": {"type": "string"},
124-
"query": {"type": "string"},
125-
"limit": {"type": "integer", "default": 10},
124+
"query": {"type": "string"},
125+
"limit": {"type": "integer", "default": 10},
126126
},
127127
},
128128
),

0 commit comments

Comments
 (0)