From d0c9b28edc3ee17aaf374301c5056f2735b466d8 Mon Sep 17 00:00:00 2001 From: Richard Hartmann Date: Wed, 21 Sep 2016 21:51:07 +0200 Subject: [PATCH] fix README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3134f6c..25e80c5 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ data_prime = bf.load(bin_key) print(data_prime) ``` -Further any class that implements __getstate__ may be used as a container as well. When reconstructing, the class needs to have the __setstate__ method implemented. +Further any class that implements `__getstate__` may be used as a container as well. When reconstructing, the class needs to have the `__setstate__` method implemented. Additionally the `bf.load` function required a mapping from the class name to the class object, like this: ```python