We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adea4b5 commit a9aff3cCopy full SHA for a9aff3c
docs/pages/pipeline.rst
@@ -174,9 +174,9 @@ Let's see an example.
174
email: str,
175
) -> Result['User', Exception]:
176
"""Can return a Success(user) or Failure(exception)."""
177
- user_schema = self._validate_user(username, email).unwrap()
178
- account = self._create_account(user_schema).unwrap()
179
- return self._create_user(account)
+ user_schema = _validate_user(username, email).unwrap()
+ account = _create_account(user_schema).unwrap()
+ return _create_user(account)
180
181
# Protected functions:
182
# ...
0 commit comments