docs: fix simple typo, neeeded -> needed (#2717)

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 2021-12-07 00:11:29 +11:00 committed by GitHub
parent 6a6a19207c
commit 0961aa6b26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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