We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47dfc3c commit a78ea5fCopy full SHA for a78ea5f
codeflash/lsp/lsp_message.py
@@ -1,7 +1,7 @@
1
from __future__ import annotations
2
3
import json
4
-from dataclasses import asdict, dataclass, field
+from dataclasses import asdict, dataclass
5
from pathlib import Path
6
from typing import Any, Optional
7
@@ -14,7 +14,7 @@
14
@dataclass
15
class LspMessage:
16
# to show a loading indicator if the operation is taking time like generating candidates or tests
17
- takes_time: bool = field(default=False)
+ takes_time: bool = False
18
19
def _loop_through(self, obj: Any) -> Any: # noqa: ANN401
20
if isinstance(obj, list):
0 commit comments