fix(order_utils.py): Remove stale comment

This commit is contained in:
F. Eugene Aumson 2018-12-11 12:39:19 -08:00 committed by GitHub
parent e6c1c2a658
commit d37680610b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -80,8 +80,6 @@ def assert_is_provider(value: Any, name: str) -> None:
If `value` isn't a Web3 provider, raise a TypeError.
"""
# TODO: make this provider check more flexible.
# https://app.asana.com/0/684263176955174/901300863045491/f
if not isinstance(value, BaseProvider):
raise TypeError(
f"Expected variable '{name}' to be an instance of a Web3 provider,"