mirror of https://github.com/coddrago/Heroku
17 lines
557 B
Python
17 lines
557 B
Python
# █ █ ▀ █▄▀ ▄▀█ █▀█ ▀ ▄▀█ ▀█▀ ▄▀█ █▀▄▀█ ▄▀█
|
|
# █▀█ █ █ █ █▀█ █▀▄ █ ▄ █▀█ █ █▀█ █ ▀ █ █▀█
|
|
#
|
|
# © Copyright 2022
|
|
#
|
|
# https://t.me/hikariatama
|
|
#
|
|
# 🔒 Licensed under the GNU GPLv3
|
|
# 🌐 https://www.gnu.org/licenses/agpl-3.0.html
|
|
|
|
|
|
def compat(code: str) -> str:
|
|
"""Reformats modules, built for GeekTG to work with Hikka"""
|
|
code = code.replace("GeekInlineQuery", "InlineQuery")
|
|
|
|
return code
|