Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 2024-11-07 10:06:07.001 [info] [Trace - 10:06:07] Sending request 'textDocument/codeAction - (416)'.
- 2024-11-07 10:06:07.001 [info] Params: {
- "textDocument": {
- "uri": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W2sZmlsZQ%3D%3D"
- },
- "range": {
- "start": {
- "line": 0,
- "character": 0
- },
- "end": {
- "line": 5,
- "character": 22
- }
- },
- "context": {
- "diagnostics": [
- {
- "range": {
- "start": {
- "line": 0,
- "character": 19
- },
- "end": {
- "line": 0,
- "character": 27
- }
- },
- "message": "\"Optional\" is not accessed",
- "severity": 4,
- "tags": [
- 1
- ],
- "source": "Pylance"
- },
- {
- "range": {
- "start": {
- "line": 2,
- "character": 19
- },
- "end": {
- "line": 2,
- "character": 28
- }
- },
- "message": "\"TypedDict\" is not accessed",
- "severity": 4,
- "tags": [
- 1
- ],
- "source": "Pylance"
- }
- ],
- "only": [
- "source.organizeImports"
- ],
- "triggerKind": 1
- }
- }
- 2024-11-07 10:06:07.002 [info] [Trace - 10:06:07] Sending request 'textDocument/codeAction - (417)'.
- 2024-11-07 10:06:07.002 [info] Params: {
- "textDocument": {
- "uri": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W3sZmlsZQ%3D%3D"
- },
- "range": {
- "start": {
- "line": 0,
- "character": 0
- },
- "end": {
- "line": 5,
- "character": 22
- }
- },
- "context": {
- "diagnostics": [
- {
- "range": {
- "start": {
- "line": 0,
- "character": 19
- },
- "end": {
- "line": 0,
- "character": 27
- }
- },
- "message": "Redefinition of unused `Optional` from cell 1, line 1",
- "data": {
- "code": "F811",
- "edits": [
- {
- "newText": "",
- "range": {
- "end": {
- "character": 0,
- "line": 1
- },
- "start": {
- "character": 0,
- "line": 0
- }
- }
- }
- ],
- "kind": {
- "body": "Redefinition of unused `Optional` from cell 1, line 1",
- "name": "RedefinedWhileUnused",
- "suggestion": "Remove definition: `Optional`"
- },
- "noqa_edit": {
- "newText": " # noqa: F811\n",
- "range": {
- "end": {
- "character": 0,
- "line": 1
- },
- "start": {
- "character": 27,
- "line": 0
- }
- }
- }
- },
- "code": "F811",
- "codeDescription": {
- "href": "https://docs.astral.sh/ruff/rules/redefined-while-unused"
- },
- "severity": 2,
- "source": "Ruff"
- },
- {
- "range": {
- "start": {
- "line": 2,
- "character": 19
- },
- "end": {
- "line": 2,
- "character": 28
- }
- },
- "message": "Redefinition of unused `TypedDict` from cell 1, line 3",
- "data": {
- "code": "F811",
- "edits": [
- {
- "newText": "",
- "range": {
- "end": {
- "character": 0,
- "line": 3
- },
- "start": {
- "character": 0,
- "line": 2
- }
- }
- }
- ],
- "kind": {
- "body": "Redefinition of unused `TypedDict` from cell 1, line 3",
- "name": "RedefinedWhileUnused",
- "suggestion": "Remove definition: `TypedDict`"
- },
- "noqa_edit": {
- "newText": " # noqa: F811\n",
- "range": {
- "end": {
- "character": 0,
- "line": 3
- },
- "start": {
- "character": 28,
- "line": 2
- }
- }
- }
- },
- "code": "F811",
- "codeDescription": {
- "href": "https://docs.astral.sh/ruff/rules/redefined-while-unused"
- },
- "severity": 2,
- "source": "Ruff"
- },
- {
- "range": {
- "start": {
- "line": 0,
- "character": 19
- },
- "end": {
- "line": 0,
- "character": 27
- }
- },
- "message": "`typing.Optional` imported but unused",
- "data": {
- "code": "F401",
- "edits": [
- {
- "newText": "",
- "range": {
- "end": {
- "character": 0,
- "line": 1
- },
- "start": {
- "character": 0,
- "line": 0
- }
- }
- }
- ],
- "kind": {
- "body": "`typing.Optional` imported but unused",
- "name": "UnusedImport",
- "suggestion": "Remove unused import: `typing.Optional`"
- },
- "noqa_edit": {
- "newText": " # noqa: F401\n",
- "range": {
- "end": {
- "character": 0,
- "line": 1
- },
- "start": {
- "character": 27,
- "line": 0
- }
- }
- }
- },
- "code": "F401",
- "codeDescription": {
- "href": "https://docs.astral.sh/ruff/rules/unused-import"
- },
- "severity": 2,
- "tags": [
- 1
- ],
- "source": "Ruff"
- },
- {
- "range": {
- "start": {
- "line": 2,
- "character": 19
- },
- "end": {
- "line": 2,
- "character": 28
- }
- },
- "message": "`typing.TypedDict` imported but unused",
- "data": {
- "code": "F401",
- "edits": [
- {
- "newText": "",
- "range": {
- "end": {
- "character": 0,
- "line": 3
- },
- "start": {
- "character": 0,
- "line": 2
- }
- }
- }
- ],
- "kind": {
- "body": "`typing.TypedDict` imported but unused",
- "name": "UnusedImport",
- "suggestion": "Remove unused import: `typing.TypedDict`"
- },
- "noqa_edit": {
- "newText": " # noqa: F401\n",
- "range": {
- "end": {
- "character": 0,
- "line": 3
- },
- "start": {
- "character": 28,
- "line": 2
- }
- }
- }
- },
- "code": "F401",
- "codeDescription": {
- "href": "https://docs.astral.sh/ruff/rules/unused-import"
- },
- "severity": 2,
- "tags": [
- 1
- ],
- "source": "Ruff"
- },
- {
- "range": {
- "start": {
- "line": 0,
- "character": 19
- },
- "end": {
- "line": 0,
- "character": 27
- }
- },
- "message": "\"Optional\" is not accessed",
- "severity": 4,
- "tags": [
- 1
- ],
- "source": "Pylance"
- },
- {
- "range": {
- "start": {
- "line": 2,
- "character": 19
- },
- "end": {
- "line": 2,
- "character": 28
- }
- },
- "message": "\"TypedDict\" is not accessed",
- "severity": 4,
- "tags": [
- 1
- ],
- "source": "Pylance"
- }
- ],
- "only": [
- "source.organizeImports"
- ],
- "triggerKind": 1
- }
- }
- 2024-11-07 10:06:07.003 [info] [Trace - 10:06:07] Received response 'textDocument/codeAction - (416)' in 2ms.
- 2024-11-07 10:06:07.003 [info] Result: [
- {
- "data": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W2sZmlsZQ%3D%3D",
- "kind": "source.organizeImports.ruff",
- "title": "Ruff: Organize imports"
- }
- ]
- 2024-11-07 10:06:07.004 [info] [Trace - 10:06:07] Received response 'textDocument/codeAction - (417)' in 2ms.
- 2024-11-07 10:06:07.004 [info] Result: [
- {
- "data": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W3sZmlsZQ%3D%3D",
- "kind": "source.organizeImports.ruff",
- "title": "Ruff: Organize imports"
- }
- ]
- 2024-11-07 10:06:07.004 [info] [Trace - 10:06:07] Sending request 'codeAction/resolve - (418)'.
- 2024-11-07 10:06:07.004 [info] Params: {
- "title": "Ruff: Organize imports",
- "data": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W2sZmlsZQ%3D%3D",
- "kind": "source.organizeImports.ruff"
- }
- 2024-11-07 10:06:07.005 [info] [Trace - 10:06:07] Sending request 'codeAction/resolve - (419)'.
- 2024-11-07 10:06:07.005 [info] Params: {
- "title": "Ruff: Organize imports",
- "data": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W3sZmlsZQ%3D%3D",
- "kind": "source.organizeImports.ruff"
- }
- 2024-11-07 10:06:07.005 [info] [Trace - 10:06:07] Received response 'codeAction/resolve - (418)' in 1ms.
- 2024-11-07 10:06:07.005 [info] Result: {
- "data": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W2sZmlsZQ%3D%3D",
- "edit": {
- "documentChanges": [
- {
- "edits": [
- {
- "newText": "from typing import Literal, Optional, TypedDict\n",
- "range": {
- "end": {
- "character": 0,
- "line": 3
- },
- "start": {
- "character": 0,
- "line": 0
- }
- }
- }
- ],
- "textDocument": {
- "uri": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W3sZmlsZQ%3D%3D",
- "version": null
- }
- },
- {
- "edits": [
- {
- "newText": "from typing import Literal, Optional, TypedDict\n",
- "range": {
- "end": {
- "character": 0,
- "line": 3
- },
- "start": {
- "character": 0,
- "line": 0
- }
- }
- }
- ],
- "textDocument": {
- "uri": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W2sZmlsZQ%3D%3D",
- "version": null
- }
- }
- ]
- },
- "kind": "source.organizeImports.ruff",
- "title": "Ruff: Organize imports"
- }
- 2024-11-07 10:06:07.006 [info] [Trace - 10:06:07] Received response 'codeAction/resolve - (419)' in 1ms.
- 2024-11-07 10:06:07.006 [info] Result: {
- "data": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W3sZmlsZQ%3D%3D",
- "edit": {
- "documentChanges": [
- {
- "edits": [
- {
- "newText": "from typing import Literal, Optional, TypedDict\n",
- "range": {
- "end": {
- "character": 0,
- "line": 3
- },
- "start": {
- "character": 0,
- "line": 0
- }
- }
- }
- ],
- "textDocument": {
- "uri": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W3sZmlsZQ%3D%3D",
- "version": null
- }
- },
- {
- "edits": [
- {
- "newText": "from typing import Literal, Optional, TypedDict\n",
- "range": {
- "end": {
- "character": 0,
- "line": 3
- },
- "start": {
- "character": 0,
- "line": 0
- }
- }
- }
- ],
- "textDocument": {
- "uri": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W2sZmlsZQ%3D%3D",
- "version": null
- }
- }
- ]
- },
- "kind": "source.organizeImports.ruff",
- "title": "Ruff: Organize imports"
- }
- 2024-11-07 10:06:07.010 [info] [Trace - 10:06:07] Sending notification 'notebookDocument/didChange'.
- 2024-11-07 10:06:07.010 [info] Params: {
- "notebookDocument": {
- "version": 34,
- "uri": "file:///Users/ethancoward/Code/data-team/src/python_playground/test.ipynb"
- },
- "change": {
- "cells": {
- "textContent": [
- {
- "document": {
- "uri": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W3sZmlsZQ%3D%3D",
- "version": 9
- },
- "changes": [
- {
- "range": {
- "start": {
- "line": 2,
- "character": 16
- },
- "end": {
- "line": 2,
- "character": 18
- }
- },
- "rangeLength": 2,
- "text": "nal,"
- },
- {
- "range": {
- "start": {
- "line": 2,
- "character": 13
- },
- "end": {
- "line": 2,
- "character": 15
- }
- },
- "rangeLength": 2,
- "text": ""
- },
- {
- "range": {
- "start": {
- "line": 2,
- "character": 6
- },
- "end": {
- "line": 2,
- "character": 12
- }
- },
- "rangeLength": 6,
- "text": ""
- },
- {
- "range": {
- "start": {
- "line": 2,
- "character": 5
- },
- "end": {
- "line": 2,
- "character": 5
- }
- },
- "rangeLength": 0,
- "text": "Op"
- },
- {
- "range": {
- "start": {
- "line": 1,
- "character": 26
- },
- "end": {
- "line": 2,
- "character": 4
- }
- },
- "rangeLength": 5,
- "text": ","
- },
- {
- "range": {
- "start": {
- "line": 0,
- "character": 19
- },
- "end": {
- "line": 1,
- "character": 19
- }
- },
- "rangeLength": 28,
- "text": ""
- }
- ]
- }
- ]
- }
- }
- }
- 2024-11-07 10:06:07.012 [info] [Trace - 10:06:07] Received notification 'textDocument/publishDiagnostics'.
- 2024-11-07 10:06:07.012 [info] Params: {
- "diagnostics": [
- {
- "code": "F811",
- "codeDescription": {
- "href": "https://docs.astral.sh/ruff/rules/redefined-while-unused"
- },
- "data": {
- "code": "F811",
- "edits": [
- {
- "newText": "from typing import Literal, TypedDict",
- "range": {
- "end": {
- "character": 47,
- "line": 0
- },
- "start": {
- "character": 0,
- "line": 0
- }
- }
- }
- ],
- "kind": {
- "body": "Redefinition of unused `Optional` from cell 1, line 1",
- "name": "RedefinedWhileUnused",
- "suggestion": "Remove definition: `Optional`"
- },
- "noqa_edit": {
- "newText": " # noqa: F811\n",
- "range": {
- "end": {
- "character": 0,
- "line": 1
- },
- "start": {
- "character": 47,
- "line": 0
- }
- }
- }
- },
- "message": "Redefinition of unused `Optional` from cell 1, line 1",
- "range": {
- "end": {
- "character": 36,
- "line": 0
- },
- "start": {
- "character": 28,
- "line": 0
- }
- },
- "severity": 2,
- "source": "Ruff"
- },
- {
- "code": "F811",
- "codeDescription": {
- "href": "https://docs.astral.sh/ruff/rules/redefined-while-unused"
- },
- "data": {
- "code": "F811",
- "edits": [
- {
- "newText": "from typing import Literal, Optional",
- "range": {
- "end": {
- "character": 47,
- "line": 0
- },
- "start": {
- "character": 0,
- "line": 0
- }
- }
- }
- ],
- "kind": {
- "body": "Redefinition of unused `TypedDict` from cell 1, line 3",
- "name": "RedefinedWhileUnused",
- "suggestion": "Remove definition: `TypedDict`"
- },
- "noqa_edit": {
- "newText": " # noqa: F811\n",
- "range": {
- "end": {
- "character": 0,
- "line": 1
- },
- "start": {
- "character": 47,
- "line": 0
- }
- }
- }
- },
- "message": "Redefinition of unused `TypedDict` from cell 1, line 3",
- "range": {
- "end": {
- "character": 47,
- "line": 0
- },
- "start": {
- "character": 38,
- "line": 0
- }
- },
- "severity": 2,
- "source": "Ruff"
- },
- {
- "code": "F401",
- "codeDescription": {
- "href": "https://docs.astral.sh/ruff/rules/unused-import"
- },
- "data": {
- "code": "F401",
- "edits": [
- {
- "newText": "from typing import Literal",
- "range": {
- "end": {
- "character": 47,
- "line": 0
- },
- "start": {
- "character": 0,
- "line": 0
- }
- }
- }
- ],
- "kind": {
- "body": "`typing.Optional` imported but unused",
- "name": "UnusedImport",
- "suggestion": "Remove unused import"
- },
- "noqa_edit": {
- "newText": " # noqa: F401\n",
- "range": {
- "end": {
- "character": 0,
- "line": 1
- },
- "start": {
- "character": 47,
- "line": 0
- }
- }
- }
- },
- "message": "`typing.Optional` imported but unused",
- "range": {
- "end": {
- "character": 36,
- "line": 0
- },
- "start": {
- "character": 28,
- "line": 0
- }
- },
- "severity": 2,
- "source": "Ruff",
- "tags": [
- 1
- ]
- },
- {
- "code": "F401",
- "codeDescription": {
- "href": "https://docs.astral.sh/ruff/rules/unused-import"
- },
- "data": {
- "code": "F401",
- "edits": [
- {
- "newText": "from typing import Literal",
- "range": {
- "end": {
- "character": 47,
- "line": 0
- },
- "start": {
- "character": 0,
- "line": 0
- }
- }
- }
- ],
- "kind": {
- "body": "`typing.TypedDict` imported but unused",
- "name": "UnusedImport",
- "suggestion": "Remove unused import"
- },
- "noqa_edit": {
- "newText": " # noqa: F401\n",
- "range": {
- "end": {
- "character": 0,
- "line": 1
- },
- "start": {
- "character": 47,
- "line": 0
- }
- }
- }
- },
- "message": "`typing.TypedDict` imported but unused",
- "range": {
- "end": {
- "character": 47,
- "line": 0
- },
- "start": {
- "character": 38,
- "line": 0
- }
- },
- "severity": 2,
- "source": "Ruff",
- "tags": [
- 1
- ]
- }
- ],
- "uri": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W3sZmlsZQ%3D%3D",
- "version": 34
- }
- 2024-11-07 10:06:07.013 [info] [Trace - 10:06:07] Received notification 'textDocument/publishDiagnostics'.
- 2024-11-07 10:06:07.013 [info] Params: {
- "diagnostics": [],
- "uri": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W2sZmlsZQ%3D%3D",
- "version": 34
- }
- 2024-11-07 10:06:07.024 [info] [Trace - 10:06:07] Sending notification 'notebookDocument/didChange'.
- 2024-11-07 10:06:07.025 [info] Params: {
- "notebookDocument": {
- "version": 36,
- "uri": "file:///Users/ethancoward/Code/data-team/src/python_playground/test.ipynb"
- },
- "change": {
- "cells": {
- "textContent": [
- {
- "document": {
- "uri": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W2sZmlsZQ%3D%3D",
- "version": 9
- },
- "changes": [
- {
- "range": {
- "start": {
- "line": 0,
- "character": 0
- },
- "end": {
- "line": 3,
- "character": 0
- }
- },
- "rangeLength": 84,
- "text": "from typing import Literal, Optional, TypedDict\n"
- }
- ]
- }
- ]
- }
- }
- }
- 2024-11-07 10:06:07.027 [info] [Trace - 10:06:07] Received notification 'textDocument/publishDiagnostics'.
- 2024-11-07 10:06:07.027 [info] Params: {
- "diagnostics": [
- {
- "code": "F811",
- "codeDescription": {
- "href": "https://docs.astral.sh/ruff/rules/redefined-while-unused"
- },
- "data": {
- "code": "F811",
- "edits": [
- {
- "newText": "from typing import Literal, TypedDict",
- "range": {
- "end": {
- "character": 47,
- "line": 0
- },
- "start": {
- "character": 0,
- "line": 0
- }
- }
- }
- ],
- "kind": {
- "body": "Redefinition of unused `Optional` from cell 1, line 1",
- "name": "RedefinedWhileUnused",
- "suggestion": "Remove definition: `Optional`"
- },
- "noqa_edit": {
- "newText": " # noqa: F811\n",
- "range": {
- "end": {
- "character": 0,
- "line": 1
- },
- "start": {
- "character": 47,
- "line": 0
- }
- }
- }
- },
- "message": "Redefinition of unused `Optional` from cell 1, line 1",
- "range": {
- "end": {
- "character": 36,
- "line": 0
- },
- "start": {
- "character": 28,
- "line": 0
- }
- },
- "severity": 2,
- "source": "Ruff"
- },
- {
- "code": "F811",
- "codeDescription": {
- "href": "https://docs.astral.sh/ruff/rules/redefined-while-unused"
- },
- "data": {
- "code": "F811",
- "edits": [
- {
- "newText": "from typing import Literal, Optional",
- "range": {
- "end": {
- "character": 47,
- "line": 0
- },
- "start": {
- "character": 0,
- "line": 0
- }
- }
- }
- ],
- "kind": {
- "body": "Redefinition of unused `TypedDict` from cell 1, line 1",
- "name": "RedefinedWhileUnused",
- "suggestion": "Remove definition: `TypedDict`"
- },
- "noqa_edit": {
- "newText": " # noqa: F811\n",
- "range": {
- "end": {
- "character": 0,
- "line": 1
- },
- "start": {
- "character": 47,
- "line": 0
- }
- }
- }
- },
- "message": "Redefinition of unused `TypedDict` from cell 1, line 1",
- "range": {
- "end": {
- "character": 47,
- "line": 0
- },
- "start": {
- "character": 38,
- "line": 0
- }
- },
- "severity": 2,
- "source": "Ruff"
- },
- {
- "code": "F401",
- "codeDescription": {
- "href": "https://docs.astral.sh/ruff/rules/unused-import"
- },
- "data": {
- "code": "F401",
- "edits": [
- {
- "newText": "from typing import Literal",
- "range": {
- "end": {
- "character": 47,
- "line": 0
- },
- "start": {
- "character": 0,
- "line": 0
- }
- }
- }
- ],
- "kind": {
- "body": "`typing.Optional` imported but unused",
- "name": "UnusedImport",
- "suggestion": "Remove unused import"
- },
- "noqa_edit": {
- "newText": " # noqa: F401\n",
- "range": {
- "end": {
- "character": 0,
- "line": 1
- },
- "start": {
- "character": 47,
- "line": 0
- }
- }
- }
- },
- "message": "`typing.Optional` imported but unused",
- "range": {
- "end": {
- "character": 36,
- "line": 0
- },
- "start": {
- "character": 28,
- "line": 0
- }
- },
- "severity": 2,
- "source": "Ruff",
- "tags": [
- 1
- ]
- },
- {
- "code": "F401",
- "codeDescription": {
- "href": "https://docs.astral.sh/ruff/rules/unused-import"
- },
- "data": {
- "code": "F401",
- "edits": [
- {
- "newText": "from typing import Literal",
- "range": {
- "end": {
- "character": 47,
- "line": 0
- },
- "start": {
- "character": 0,
- "line": 0
- }
- }
- }
- ],
- "kind": {
- "body": "`typing.TypedDict` imported but unused",
- "name": "UnusedImport",
- "suggestion": "Remove unused import"
- },
- "noqa_edit": {
- "newText": " # noqa: F401\n",
- "range": {
- "end": {
- "character": 0,
- "line": 1
- },
- "start": {
- "character": 47,
- "line": 0
- }
- }
- }
- },
- "message": "`typing.TypedDict` imported but unused",
- "range": {
- "end": {
- "character": 47,
- "line": 0
- },
- "start": {
- "character": 38,
- "line": 0
- }
- },
- "severity": 2,
- "source": "Ruff",
- "tags": [
- 1
- ]
- }
- ],
- "uri": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W3sZmlsZQ%3D%3D",
- "version": 36
- }
- 2024-11-07 10:06:07.028 [info] [Trace - 10:06:07] Received notification 'textDocument/publishDiagnostics'.
- 2024-11-07 10:06:07.028 [info] Params: {
- "diagnostics": [],
- "uri": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W2sZmlsZQ%3D%3D",
- "version": 36
- }
- 2024-11-07 10:06:07.037 [info] [Trace - 10:06:07] Sending notification 'notebookDocument/didChange'.
- 2024-11-07 10:06:07.037 [info] Params: {
- "notebookDocument": {
- "version": 38,
- "uri": "file:///Users/ethancoward/Code/data-team/src/python_playground/test.ipynb"
- },
- "change": {
- "cells": {
- "textContent": [
- {
- "document": {
- "uri": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W3sZmlsZQ%3D%3D",
- "version": 10
- },
- "changes": [
- {
- "range": {
- "start": {
- "line": 2,
- "character": 9
- },
- "end": {
- "line": 2,
- "character": 9
- }
- },
- "rangeLength": 0,
- "text": "nal,"
- },
- {
- "range": {
- "start": {
- "line": 2,
- "character": 6
- },
- "end": {
- "line": 2,
- "character": 9
- }
- },
- "rangeLength": 3,
- "text": ""
- },
- {
- "range": {
- "start": {
- "line": 2,
- "character": 5
- },
- "end": {
- "line": 2,
- "character": 5
- }
- },
- "rangeLength": 0,
- "text": "Op"
- },
- {
- "range": {
- "start": {
- "line": 1,
- "character": 0
- },
- "end": {
- "line": 2,
- "character": 4
- }
- },
- "rangeLength": 5,
- "text": ","
- },
- {
- "range": {
- "start": {
- "line": 0,
- "character": 19
- },
- "end": {
- "line": 1,
- "character": 0
- }
- },
- "rangeLength": 29,
- "text": ""
- }
- ]
- }
- ]
- }
- }
- }
- 2024-11-07 10:06:07.039 [info] [Trace - 10:06:07] Received notification 'textDocument/publishDiagnostics'.
- 2024-11-07 10:06:07.039 [info] Params: {
- "diagnostics": [
- {
- "message": "SyntaxError: Expected an import name",
- "range": {
- "end": {
- "character": 20,
- "line": 0
- },
- "start": {
- "character": 19,
- "line": 0
- }
- },
- "severity": 1,
- "source": "Ruff"
- },
- {
- "message": "SyntaxError: Trailing comma not allowed",
- "range": {
- "end": {
- "character": 28,
- "line": 0
- },
- "start": {
- "character": 27,
- "line": 0
- }
- },
- "severity": 1,
- "source": "Ruff"
- }
- ],
- "uri": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W3sZmlsZQ%3D%3D",
- "version": 38
- }
- 2024-11-07 10:06:07.039 [info] [Trace - 10:06:07] Received notification 'textDocument/publishDiagnostics'.
- 2024-11-07 10:06:07.039 [info] Params: {
- "diagnostics": [],
- "uri": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W2sZmlsZQ%3D%3D",
- "version": 38
- }
- 2024-11-07 10:06:07.041 [info] [Trace - 10:06:07] Sending notification 'notebookDocument/didChange'.
- 2024-11-07 10:06:07.041 [info] Params: {
- "notebookDocument": {
- "version": 40,
- "uri": "file:///Users/ethancoward/Code/data-team/src/python_playground/test.ipynb"
- },
- "change": {
- "cells": {
- "textContent": [
- {
- "document": {
- "uri": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W2sZmlsZQ%3D%3D",
- "version": 10
- },
- "changes": [
- {
- "range": {
- "start": {
- "line": 0,
- "character": 0
- },
- "end": {
- "line": 3,
- "character": 0
- }
- },
- "rangeLength": 59,
- "text": "from typing import Literal, Optional, TypedDict\n"
- }
- ]
- }
- ]
- }
- }
- }
- 2024-11-07 10:06:07.045 [info] [Trace - 10:06:07] Received notification 'textDocument/publishDiagnostics'.
- 2024-11-07 10:06:07.045 [info] Params: {
- "diagnostics": [
- {
- "message": "SyntaxError: Expected an import name",
- "range": {
- "end": {
- "character": 20,
- "line": 0
- },
- "start": {
- "character": 19,
- "line": 0
- }
- },
- "severity": 1,
- "source": "Ruff"
- },
- {
- "message": "SyntaxError: Trailing comma not allowed",
- "range": {
- "end": {
- "character": 28,
- "line": 0
- },
- "start": {
- "character": 27,
- "line": 0
- }
- },
- "severity": 1,
- "source": "Ruff"
- }
- ],
- "uri": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W3sZmlsZQ%3D%3D",
- "version": 40
- }
- 2024-11-07 10:06:07.046 [info] [Trace - 10:06:07] Received notification 'textDocument/publishDiagnostics'.
- 2024-11-07 10:06:07.046 [info] Params: {
- "diagnostics": [],
- "uri": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W2sZmlsZQ%3D%3D",
- "version": 40
- }
- 2024-11-07 10:06:07.088 [info] [Trace - 10:06:07] Sending request 'textDocument/formatting - (420)'.
- 2024-11-07 10:06:07.088 [info] Params: {
- "textDocument": {
- "uri": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W2sZmlsZQ%3D%3D"
- },
- "options": {
- "tabSize": 4,
- "insertSpaces": true
- }
- }
- 2024-11-07 10:06:07.089 [info] [Trace - 10:06:07] Sending request 'textDocument/formatting - (421)'.
- 2024-11-07 10:06:07.089 [info] Params: {
- "textDocument": {
- "uri": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W3sZmlsZQ%3D%3D"
- },
- "options": {
- "tabSize": 4,
- "insertSpaces": true
- }
- }
- 2024-11-07 10:06:07.091 [info] [Trace - 10:06:07] Received response 'textDocument/formatting - (420)' in 3ms.
- 2024-11-07 10:06:07.091 [info] Result: [
- {
- "newText": "\n",
- "range": {
- "end": {
- "character": 0,
- "line": 1
- },
- "start": {
- "character": 0,
- "line": 1
- }
- }
- }
- ]
- 2024-11-07 10:06:07.091 [info] [Trace - 10:06:07] 1370.161473002s WARN ruff:worker:0 ruff_server::format: Unable to format document: Expected an import name at byte range 19..20
- 2024-11-07 10:06:07.094 [info] [Trace - 10:06:07] Received response 'textDocument/formatting - (421)' in 5ms.
- 2024-11-07 10:06:07.094 [info] No result returned.
- 2024-11-07 10:06:07.143 [info] [Trace - 10:06:07] Sending notification 'notebookDocument/didChange'.
- 2024-11-07 10:06:07.144 [info] Params: {
- "notebookDocument": {
- "version": 42,
- "uri": "file:///Users/ethancoward/Code/data-team/src/python_playground/test.ipynb"
- },
- "change": {
- "cells": {
- "textContent": [
- {
- "document": {
- "uri": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W2sZmlsZQ%3D%3D",
- "version": 11
- },
- "changes": [
- {
- "range": {
- "start": {
- "line": 1,
- "character": 0
- },
- "end": {
- "line": 1,
- "character": 0
- }
- },
- "rangeLength": 0,
- "text": "\n"
- }
- ]
- }
- ]
- }
- }
- }
- 2024-11-07 10:06:07.216 [info] [Trace - 10:06:07] Received notification 'textDocument/publishDiagnostics'.
- 2024-11-07 10:06:07.216 [info] Params: {
- "diagnostics": [
- {
- "message": "SyntaxError: Expected an import name",
- "range": {
- "end": {
- "character": 20,
- "line": 0
- },
- "start": {
- "character": 19,
- "line": 0
- }
- },
- "severity": 1,
- "source": "Ruff"
- },
- {
- "message": "SyntaxError: Trailing comma not allowed",
- "range": {
- "end": {
- "character": 28,
- "line": 0
- },
- "start": {
- "character": 27,
- "line": 0
- }
- },
- "severity": 1,
- "source": "Ruff"
- }
- ],
- "uri": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W3sZmlsZQ%3D%3D",
- "version": 42
- }
- 2024-11-07 10:06:07.217 [info] [Trace - 10:06:07] Received notification 'textDocument/publishDiagnostics'.
- 2024-11-07 10:06:07.218 [info] Params: {
- "diagnostics": [],
- "uri": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W2sZmlsZQ%3D%3D",
- "version": 42
- }
- 2024-11-07 10:06:07.395 [info] [Trace - 10:06:07] Sending request 'textDocument/codeAction - (422)'.
- 2024-11-07 10:06:07.395 [info] Params: {
- "textDocument": {
- "uri": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W2sZmlsZQ%3D%3D"
- },
- "range": {
- "start": {
- "line": 2,
- "character": 0
- },
- "end": {
- "line": 2,
- "character": 22
- }
- },
- "context": {
- "diagnostics": [
- {
- "range": {
- "start": {
- "line": 2,
- "character": 19
- },
- "end": {
- "line": 2,
- "character": 28
- }
- },
- "message": "\"TypedDict\" is not accessed",
- "severity": 4,
- "tags": [
- 1
- ],
- "source": "Pylance"
- }
- ],
- "triggerKind": 2
- }
- }
- 2024-11-07 10:06:07.395 [info] [Trace - 10:06:07] Received response 'textDocument/codeAction - (422)' in 0ms.
- 2024-11-07 10:06:07.396 [info] Result: [
- {
- "data": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W2sZmlsZQ%3D%3D",
- "kind": "source.fixAll.ruff",
- "title": "Ruff: Fix all auto-fixable problems"
- },
- {
- "data": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W2sZmlsZQ%3D%3D",
- "kind": "source.organizeImports.ruff",
- "title": "Ruff: Organize imports"
- }
- ]
- 2024-11-07 10:06:07.497 [info] [Trace - 10:06:07] Sending request 'textDocument/codeAction - (423)'.
- 2024-11-07 10:06:07.497 [info] Params: {
- "textDocument": {
- "uri": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W3sZmlsZQ%3D%3D"
- },
- "range": {
- "start": {
- "line": 1,
- "character": 22
- },
- "end": {
- "line": 1,
- "character": 22
- }
- },
- "context": {
- "diagnostics": [],
- "triggerKind": 2
- }
- }
- 2024-11-07 10:06:07.498 [info] [Trace - 10:06:07] Received response 'textDocument/codeAction - (423)' in 1ms.
- 2024-11-07 10:06:07.498 [info] Result: [
- {
- "data": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W3sZmlsZQ%3D%3D",
- "kind": "source.fixAll.ruff",
- "title": "Ruff: Fix all auto-fixable problems"
- },
- {
- "data": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W3sZmlsZQ%3D%3D",
- "kind": "source.organizeImports.ruff",
- "title": "Ruff: Organize imports"
- }
- ]
- 2024-11-07 10:06:08.008 [info] [Trace - 10:06:08] Sending request 'textDocument/codeAction - (424)'.
- 2024-11-07 10:06:08.008 [info] Params: {
- "textDocument": {
- "uri": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W2sZmlsZQ%3D%3D"
- },
- "range": {
- "start": {
- "line": 2,
- "character": 0
- },
- "end": {
- "line": 2,
- "character": 22
- }
- },
- "context": {
- "diagnostics": [],
- "triggerKind": 2
- }
- }
- 2024-11-07 10:06:08.009 [info] [Trace - 10:06:08] Sending request 'textDocument/codeAction - (425)'.
- 2024-11-07 10:06:08.009 [info] Params: {
- "textDocument": {
- "uri": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W3sZmlsZQ%3D%3D"
- },
- "range": {
- "start": {
- "line": 1,
- "character": 22
- },
- "end": {
- "line": 1,
- "character": 22
- }
- },
- "context": {
- "diagnostics": [],
- "triggerKind": 2
- }
- }
- 2024-11-07 10:06:08.010 [info] [Trace - 10:06:08] Received response 'textDocument/codeAction - (424)' in 2ms.
- 2024-11-07 10:06:08.010 [info] Result: [
- {
- "data": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W2sZmlsZQ%3D%3D",
- "kind": "source.fixAll.ruff",
- "title": "Ruff: Fix all auto-fixable problems"
- },
- {
- "data": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W2sZmlsZQ%3D%3D",
- "kind": "source.organizeImports.ruff",
- "title": "Ruff: Organize imports"
- }
- ]
- 2024-11-07 10:06:08.011 [info] [Trace - 10:06:08] Received response 'textDocument/codeAction - (425)' in 2ms.
- 2024-11-07 10:06:08.011 [info] Result: [
- {
- "data": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W3sZmlsZQ%3D%3D",
- "kind": "source.fixAll.ruff",
- "title": "Ruff: Fix all auto-fixable problems"
- },
- {
- "data": "vscode-notebook-cell:/Users/ethancoward/Code/data-team/src/python_playground/test.ipynb#W3sZmlsZQ%3D%3D",
- "kind": "source.organizeImports.ruff",
- "title": "Ruff: Organize imports"
- }
- ]
Advertisement
Add Comment
Please, Sign In to add comment