Skip to content

Commit a78ea5f

Browse files
small fix
1 parent 47dfc3c commit a78ea5f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

codeflash/lsp/lsp_message.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from __future__ import annotations
22

33
import json
4-
from dataclasses import asdict, dataclass, field
4+
from dataclasses import asdict, dataclass
55
from pathlib import Path
66
from typing import Any, Optional
77

@@ -14,7 +14,7 @@
1414
@dataclass
1515
class LspMessage:
1616
# to show a loading indicator if the operation is taking time like generating candidates or tests
17-
takes_time: bool = field(default=False)
17+
takes_time: bool = False
1818

1919
def _loop_through(self, obj: Any) -> Any: # noqa: ANN401
2020
if isinstance(obj, list):

0 commit comments

Comments
 (0)