mirror of
https://github.com/pyrogram/pyrogram
synced 2025-09-02 15:25:41 +00:00
Merge branch 'develop' into asyncio-dev
This commit is contained in:
@@ -153,7 +153,7 @@ class Client(Methods, BaseClient):
|
||||
|
||||
workdir (``str``, *optional*):
|
||||
Define a custom working directory. The working directory is the location in your filesystem
|
||||
where Pyrogram will store your session files. Defaults to "." (current directory).
|
||||
where Pyrogram will store your session files. Defaults to the parent directory of the main script.
|
||||
|
||||
config_file (``str``, *optional*):
|
||||
Path of the configuration file. Defaults to ./config.ini
|
||||
|
@@ -63,7 +63,7 @@ class InlineQueryResult(Object):
|
||||
super().__init__()
|
||||
|
||||
self.type = type
|
||||
self.id = str(uuid4()) if id is None else id
|
||||
self.id = str(uuid4()) if id is None else str(id)
|
||||
self.input_message_content = input_message_content
|
||||
self.reply_markup = reply_markup
|
||||
|
||||
|
Reference in New Issue
Block a user