aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar ItsCinnabar <[email protected]>2020-07-14 10:06:00 -0400
committerGravatar GitHub <[email protected]>2020-07-14 10:06:00 -0400
commit6d064912e5c2caf29de609955f78eb60014a5b63 (patch)
tree4ee7c9d613a2ec76c79f48516c8fd8d5c70883cb
parentUpdate or-gotcha.md (diff)
Update or-gotcha.md
-rw-r--r--bot/resources/tags/or-gotcha.md1
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)