Skip to content

Commit d322265

Browse files
committed
Fixing build
1 parent abc3223 commit d322265

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ class CreateAccountAndUser(object):
4646
return self._create_user(account)
4747

4848
# Protected methods
49-
# def _validate_user()
5049
# ...
5150

5251
```

docs/conf.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
import os
1616
import sys
17+
1718
sys.path.insert(0, os.path.abspath('..'))
1819

1920

@@ -41,10 +42,6 @@ def _get_project_meta():
4142

4243
# -- General configuration ---------------------------------------------------
4344

44-
# If your documentation needs a minimal Sphinx version, state it here.
45-
#
46-
# needs_sphinx = '1.0'
47-
4845
# Add any Sphinx extension module names here, as strings. They can be
4946
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
5047
# ones.

docs/pages/do-notation.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ And we know that this pipeline can fail in several places:
1616

1717
1. Wrong ``username`` or ``email`` might be passed, so the validation will fail
1818
2. ``Account`` with this ``username`` or ``email`` might already exist
19-
3. ``User`` creation might fail as well, since it also makes an ``HTTP`` request to another micro-service deep inside
19+
3. ``User`` creation might fail as well,
20+
since it also makes an ``HTTP`` request to another micro-service deep inside
2021

2122
Here's the code to illustrate the task.
2223

0 commit comments

Comments
 (0)