2
0
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:
Dan
2019-08-06 01:02:55 +02:00
4 changed files with 7 additions and 7 deletions

View File

@@ -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

View File

@@ -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