File tree Expand file tree Collapse file tree 3 files changed +3
-6
lines changed
Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Original file line number Diff line number Diff 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```
Original file line number Diff line number Diff line change 1414
1515import os
1616import sys
17+
1718sys .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.
Original file line number Diff line number Diff line change @@ -16,7 +16,8 @@ And we know that this pipeline can fail in several places:
1616
17171. Wrong ``username `` or ``email `` might be passed, so the validation will fail
18182. ``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
2122Here's the code to illustrate the task.
2223
You can’t perform that action at this time.
0 commit comments