mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-27 00:49:55 +03:00
13 lines
264 B
Python
13 lines
264 B
Python
"""
|
|
Collection of assertion functions used for the steps.
|
|
"""
|
|
|
|
class Almost:
|
|
|
|
def __init__(self, value, offset=0.00001):
|
|
self.value = value
|
|
self.offset = offset
|
|
|
|
def __eq__(self, other):
|
|
return abs(other - self.value) < self.offset
|