From bbb614ffa80ad4778b6a3bd30eda1f634d45cbe6 Mon Sep 17 00:00:00 2001 From: sobolevn Date: Mon, 2 Sep 2024 18:42:29 +0300 Subject: [PATCH] Update railway.rst --- docs/pages/railway.rst | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/pages/railway.rst b/docs/pages/railway.rst index 586b09b7..076fcb34 100644 --- a/docs/pages/railway.rst +++ b/docs/pages/railway.rst @@ -162,7 +162,6 @@ inner state of containers into a regular types: >>> assert Some(0).unwrap() == 0 .. code:: pycon - :force: >>> Failure(1).unwrap() Traceback (most recent call last): @@ -179,7 +178,6 @@ use :meth:`returns.interfaces.unwrappable.Unwrapable.failure` to unwrap the failed state: .. code:: pycon - :force: >>> assert Failure(1).failure() == 1 >>> Success(1).failure()