diff options
| -rw-r--r-- | bot/resources/tags/or-gotcha.md | 1 | 
1 files changed, 0 insertions, 1 deletions
| diff --git a/bot/resources/tags/or-gotcha.md b/bot/resources/tags/or-gotcha.md index cbb64c276..00c8a5645 100644 --- a/bot/resources/tags/or-gotcha.md +++ b/bot/resources/tags/or-gotcha.md @@ -15,4 +15,3 @@ if favorite_fruit == 'grapefruit' or favorite_fruit == 'lemon':  if favorite_fruit in ('grapefruit', 'lemon'):      print("That's a weird favorite fruit to have.")  ``` -For more info, see here:  [Python Docs - Boolean Operations](https://docs.python.org/3/reference/expressions.html#boolean-operations) | 
