Skip to content

Commit 1f1c355

Browse files
authored
Merge pull request #137 from django-commons/develop
fix a few howto doc typos
2 parents 85fa56f + 9bec4cf commit 1f1c355

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/source/howto.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)