Skip to content

Commit

Permalink
Update typing-extensions imports to compatible version
Browse files Browse the repository at this point in the history
  • Loading branch information
njgheorghita committed Dec 17, 2019
1 parent bcbdca6 commit c07805f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions web3/_utils/transactions.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
from hexbytes import (
HexBytes,
)
from typing_extensions import (

from web3._utils.compat import (
Literal,
)

from web3._utils.threads import (
Timeout,
)
Expand Down
8 changes: 4 additions & 4 deletions web3/middleware/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
)

import lru
from typing_extensions import (
Literal,
TypedDict,
)

from web3._utils.caching import (
generate_cache_key,
)
from web3._utils.compat import (
Literal,
TypedDict,
)
from web3.types import ( # noqa: F401
BlockData,
BlockNumber,
Expand Down

0 comments on commit c07805f

Please sign in to comment.