From 4264dcea491fe037ee746a0823dc383741276a75 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jure=20=C5=A0orn?= <sornjure@gmail.com>
Date: Thu, 27 Dec 2018 01:40:11 +0100
Subject: [PATCH] Removed in operator

---
 README.md | 2 --
 1 file changed, 2 deletions(-)

diff --git a/README.md b/README.md
index 155df1c..73362e6 100644
--- a/README.md
+++ b/README.md
@@ -23,7 +23,6 @@ List
 <list>.extend(<list>)
 <list> += [<el>]
 <list> += <list>
-<bool> = <el> in <list>
 ```
 
 ```python
@@ -60,7 +59,6 @@ Dictionary
 <view>  = <dict>.items()
 <value> = <dict>.get(key, default)         # Returns default if key does not exist.
 <value> = <dict>.setdefault(key, default)  # Same, but also adds default to dict.
-<bool>  = key in <dict>
 <dict>.update(<dict>)
 ```