]> git.openstreetmap.org Git - nominatim.git/blobdiff - src/nominatim_api/reverse.py
release 4.5.0.post8
[nominatim.git] / src / nominatim_api / reverse.py
index e0c1d11831ec2776bc076cc8205d6e867d014a6c..1b06e659fbfb5b98edf16d708f13bb3c0e0d8ee3 100644 (file)
@@ -20,9 +20,6 @@ from . import results as nres
 from .logging import log
 from .types import AnyPoint, DataLayer, ReverseDetails, GeometryFormat, Bbox
 
-# In SQLAlchemy expression which compare with NULL need to be expressed with
-# the equal sign.
-# pylint: disable=singleton-comparison
 
 RowFunc = Callable[[Optional[SaRow], Type[nres.ReverseResult]], Optional[nres.ReverseResult]]