From 737b54813bba0160e8a0eaa5bfeae9cb46f7796e Mon Sep 17 00:00:00 2001 From: Gireg Roussel <35464943+Arthemide@users.noreply.github.com> Date: Wed, 21 Aug 2024 17:31:42 +0200 Subject: [PATCH] update image class to check on azure url (#30) Co-authored-by: gireg.roussel --- src/yarrow/yarrow_cls.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/yarrow/yarrow_cls.py b/src/yarrow/yarrow_cls.py index 262cb1a..c689f35 100644 --- a/src/yarrow/yarrow_cls.py +++ b/src/yarrow/yarrow_cls.py @@ -81,6 +81,7 @@ def __eq__(self, other): if isinstance(other, Image): return all( ( + self.azure_url == other.azure_url, self.file_name == other.file_name, self.width == other.width, self.height == other.height,