docs: fix simple typo, neeeded -> needed

There is a small typo in bigchaindb/lib.py, tests/tendermint/test_lib.py.

Should read `needed` rather than `neeeded`.
This commit is contained in:
Tim Gates 2020-12-23 23:14:37 +11:00
parent caf31647e0
commit caf1eb68ef
No known key found for this signature in database
GPG Key ID: AE3BE0D53823CF05
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ import rapidjson
try:
from hashlib import sha3_256
except ImportError:
# NOTE: neeeded for Python < 3.6
# NOTE: needed for Python < 3.6
from sha3 import sha3_256
import requests

View File

@ -10,7 +10,7 @@ from unittest.mock import patch
try:
from hashlib import sha3_256
except ImportError:
# NOTE: neeeded for Python < 3.6
# NOTE: needed for Python < 3.6
from sha3 import sha3_256
import pytest