|
| 1 | +import builtins |
1 | 2 | import os |
2 | 3 | import sys |
3 | 4 |
|
@@ -202,25 +203,25 @@ class Difflib(ThemeSection): |
202 | 203 | @dataclass(frozen=True, kw_only=True) |
203 | 204 | class FancyCompleter(ThemeSection): |
204 | 205 | # functions and methods |
205 | | - function: str = ANSIColors.BOLD_BLUE |
206 | | - builtin_function_or_method: str = ANSIColors.BOLD_BLUE |
207 | | - method: str = ANSIColors.BOLD_CYAN |
208 | | - method_wrapper: str = ANSIColors.BOLD_CYAN |
209 | | - wrapper_descriptor: str = ANSIColors.BOLD_CYAN |
210 | | - method_descriptor: str = ANSIColors.BOLD_CYAN |
| 206 | + function: builtins.str = ANSIColors.BOLD_BLUE |
| 207 | + builtin_function_or_method: builtins.str = ANSIColors.BOLD_BLUE |
| 208 | + method: builtins.str = ANSIColors.BOLD_CYAN |
| 209 | + method_wrapper: builtins.str = ANSIColors.BOLD_CYAN |
| 210 | + wrapper_descriptor: builtins.str = ANSIColors.BOLD_CYAN |
| 211 | + method_descriptor: builtins.str = ANSIColors.BOLD_CYAN |
211 | 212 |
|
212 | 213 | # numbers |
213 | | - int: str = ANSIColors.BOLD_YELLOW |
214 | | - float: str = ANSIColors.BOLD_YELLOW |
215 | | - complex: str = ANSIColors.BOLD_YELLOW |
216 | | - bool: str = ANSIColors.BOLD_YELLOW |
| 214 | + int: builtins.str = ANSIColors.BOLD_YELLOW |
| 215 | + float: builtins.str = ANSIColors.BOLD_YELLOW |
| 216 | + complex: builtins.str = ANSIColors.BOLD_YELLOW |
| 217 | + bool: builtins.str = ANSIColors.BOLD_YELLOW |
217 | 218 |
|
218 | 219 | # others |
219 | | - type: str = ANSIColors.BOLD_MAGENTA |
220 | | - module: str = ANSIColors.CYAN |
221 | | - NoneType: str = ANSIColors.GREY |
222 | | - bytes: str = ANSIColors.BOLD_GREEN |
223 | | - str: str = ANSIColors.BOLD_GREEN |
| 220 | + type: builtins.str = ANSIColors.BOLD_MAGENTA |
| 221 | + module: builtins.str = ANSIColors.CYAN |
| 222 | + NoneType: builtins.str = ANSIColors.GREY |
| 223 | + bytes: builtins.str = ANSIColors.BOLD_GREEN |
| 224 | + str: builtins.str = ANSIColors.BOLD_GREEN |
224 | 225 |
|
225 | 226 |
|
226 | 227 | @dataclass(frozen=True, kw_only=True) |
|
0 commit comments