Skip to content

Commit

Permalink
Merge pull request #100 from cactoe/main
Browse files Browse the repository at this point in the history
fix: resolve TypeError by correctly positioning invert_media parameter
  • Loading branch information
wulan17 authored Nov 25, 2024
2 parents 6f5bd13 + 45b47af commit 0322696
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pyrogram/methods/messages/edit_inline_text.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ async def edit_inline_text(
id=unpacked,
no_webpage=disable_web_page_preview or None,
reply_markup=await reply_markup.write(self) if reply_markup else None,
**await self.parser.parse(text, parse_mode)
**await self.parser.parse(text, parse_mode),
invert_media=invert_media
),
sleep_threshold=self.sleep_threshold,
invert_media=invert_media
)
4 changes: 2 additions & 2 deletions pyrogram/methods/users/set_profile_photo.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# You should have received a copy of the GNU Lesser General Public License
# along with Pyrofork. If not, see <http://www.gnu.org/licenses/>.

from typing import Union, BinaryIO
from typing import Union, BinaryIO, List

import pyrogram
from pyrogram import raw
Expand All @@ -29,7 +29,7 @@ async def set_profile_photo(
*,
photo: Union[str, BinaryIO] = None,
emoji: int = None,
emoji_background: Union[int, list[int]] = None,
emoji_background: Union[int, List[int]] = None,
video: Union[str, BinaryIO] = None
) -> bool:
"""Set a new profile photo or video (H.264/MPEG-4 AVC video, max 5 seconds).
Expand Down

0 comments on commit 0322696

Please sign in to comment.