Skip to content

Commit 64d31f9

Browse files
committed
docs: fix indentation
1 parent e03d3b9 commit 64d31f9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ If you want to create your own sentinels, use this library! Make your calls to
4242
# Before sentinel:
4343
missing = object()
4444
if d.get("c", missing) is missing:
45-
... # do some stuff
45+
... # do some stuff
4646
4747
# After sentinel:
4848
Missing = sentinel.create()
4949
if d.get("c", Missing) is Missing:
50-
... # do some stuff
50+
... # do some stuff
5151
5252
5353
Features
@@ -118,7 +118,7 @@ entries are missing or unset in a dictionary in a self-documenting way:
118118
119119
Unset = sentinel.create()
120120
if d.get("stdin", Unset) is Unset:
121-
stdin = 0 # some reasonable default
121+
stdin = 0 # some reasonable default
122122
123123
124124
Adding extra methods and class attributes

0 commit comments

Comments
 (0)