From d255acc749c8c5f2622450141b6d436e3354cfb8 Mon Sep 17 00:00:00 2001 From: Monica Diaz Pena Date: Mon, 6 Jan 2020 17:11:25 -0500 Subject: [PATCH] Remove the __int__ implementation of BaseSuspendSecurityUid. --- base_suspend_security/base_suspend_security.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/base_suspend_security/base_suspend_security.py b/base_suspend_security/base_suspend_security.py index f8712f77..03845d6d 100644 --- a/base_suspend_security/base_suspend_security.py +++ b/base_suspend_security/base_suspend_security.py @@ -4,9 +4,6 @@ from odoo.tools import pycompat class BaseSuspendSecurityUid(int): - def __int__(self): - return self - def __eq__(self, other): if isinstance(other, pycompat.integer_types): return False