Skip to content

Commit

Permalink
Changes import of Hashable to get from collections.abc instead of…
Browse files Browse the repository at this point in the history
… `collections` (#2067)
  • Loading branch information
thepabloaguilar authored Jun 17, 2021
1 parent 86c157d commit 19c2133
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion wemake_python_styleguide/visitors/ast/builtins.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import ast
import re
import string
from collections import Counter, Hashable, defaultdict
from collections import Counter, defaultdict
from collections.abc import Hashable
from contextlib import suppress
from typing import (
ClassVar,
Expand Down

0 comments on commit 19c2133

Please sign in to comment.