Skip to content

Commit c3378fb

Browse files
feat: make argument detail italic style
1 parent c1bd9d2 commit c3378fb

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

Lib/_colorize.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ class Dis(ThemeSection):
223223
label_fg: str = ANSIColors.BLACK
224224

225225
exception_label: str = ANSIColors.CYAN
226-
argument_detail: str = ANSIColors.CYAN
226+
argument_detail: str = "\x1B[3m"
227227

228228
op_load: str = ANSIColors.BLUE
229229
op_pop: str = ANSIColors.MAGENTA
@@ -257,7 +257,6 @@ def color_by_opname(self, opname: str) -> str:
257257
):
258258
return self.op_control_flow
259259

260-
261260
return self.reset
262261

263262
@dataclass(frozen=True, kw_only=True)

0 commit comments

Comments
 (0)