From 20cfb92d450e75bc72877941accc2adbf960a59d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Tue, 9 Jul 2019 23:00:24 +0200 Subject: [PATCH] Enum --- README.md | 2 +- index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b74355a..ca1c41d 100644 --- a/README.md +++ b/README.md @@ -1306,7 +1306,7 @@ from functools import partial LogicOp = Enum('LogicOp', {'AND': partial(lambda l, r: l and r), 'OR' : partial(lambda l, r: l or r)}) ``` -* **Another solution in this particular case, is to use `'and_'` and `'or_'` functions from module [Operator](#operator) as values.** +* **Another solution in this particular case, is to use `'and_'` and `'or_'` functions from module [Operator](#operator).** Exceptions diff --git a/index.html b/index.html index f28132d..d33a7c2 100644 --- a/index.html +++ b/index.html @@ -1211,7 +1211,7 @@ LogicOp = Enum('LogicOp', {'OR' : partial(lambda l, r: l or r)})

#Exceptions

Basic Example