Skip to content

Commit

Permalink
consistency in imports
Browse files Browse the repository at this point in the history
  • Loading branch information
martinfleis committed Jun 27, 2024
1 parent a6fcacb commit cb6570a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions momepy/coins.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

import collections
import math
from collections import Counter

import geopandas as gpd
import numpy as np
Expand Down Expand Up @@ -398,7 +397,7 @@ def _angle_between_two_lines(line1, line2):

# assertion: we expect exactly 2 of the 4 points to be identical
# (lines touch in this point)
points = Counter([a, b, c, d])
points = collections.Counter([a, b, c, d])

# make sure lines are not identical
if len(points) == 2:
Expand Down

0 comments on commit cb6570a

Please sign in to comment.