From 1b75a9f50c9d2616e9964f3776564560b1938d93 Mon Sep 17 00:00:00 2001 From: ptrcnull Date: Thu, 7 Oct 2021 20:47:18 +0200 Subject: [PATCH] fix: Add missing self reference to removing messages --- api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api.py b/api.py index d97224c..83c3c58 100644 --- a/api.py +++ b/api.py @@ -160,4 +160,4 @@ class SMS(SmsDeliver): __modem__: Modem def remove(self): - __modem__.remove_sms(self) + self.__modem__.remove_sms(self)