File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ like have multiple subcommands you can define any number of functions decorated
9999
100100 .. code-block :: python
101101
102- from django_typer.management importTyperCommand , command
102+ from django_typer.management import TyperCommand , command
103103
104104 class Command (TyperCommand ):
105105
@@ -590,8 +590,8 @@ This provides a common hook for configuring rich_ that you can control on a per-
590590 "theme": None, # predefined themes
591591 "word_wrap": False, # default is False
592592 "show_locals": True, # rich default is False, but we turn this on
593- "locals_max_length": # default is 10
594- "locals_max_string": # default is 80
593+ "locals_max_length": 10 # default is 10
594+ "locals_max_string": 80 # default is 80
595595 "locals_hide_dunder": True, # default is True
596596 "locals_hide_sunder": False, # default is None
597597 "indent_guides": True, # default is True
You can’t perform that action at this time.
0 commit comments