mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2025-12-31 20:54:51 +00:00
No need to inherit from Object
This commit is contained in:
parent
0a057cc233
commit
c8fc995c83
1 changed files with 1 additions and 3 deletions
|
|
@ -17,10 +17,9 @@
|
|||
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
from pyrogram.api import types
|
||||
from pyrogram.api.core import Object
|
||||
|
||||
|
||||
class InlineQueryResultArticle(Object):
|
||||
class InlineQueryResultArticle:
|
||||
"""Represents a link to an article or web page.
|
||||
|
||||
Args:
|
||||
|
|
@ -55,7 +54,6 @@ class InlineQueryResultArticle(Object):
|
|||
Thumbnail height.
|
||||
|
||||
"""
|
||||
ID = 0xb0700033
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
|
|
|
|||
Loading…
Reference in a new issue