diff --git a/hikka/heroku.py b/hikka/heroku.py index 83a60f1..de5044a 100644 --- a/hikka/heroku.py +++ b/hikka/heroku.py @@ -14,11 +14,9 @@ from . import utils def publish( - clients: list, key: str, api_token: Optional[str] = None, create_new: Optional[bool] = True, - full_match: Optional[bool] = False, ): """Push to heroku""" logging.debug("Configuring heroku...") @@ -38,9 +36,9 @@ def publish( "https://github.com/heroku/heroku-buildpack-python", "https://github.com/hikariatama/heroku-buildpack", "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest", - "https://github.com/heroku/heroku-buildpack-apt", "https://github.com/DuckyTeam/heroku-buildpack-imagemagick", "https://github.com/jontewks/puppeteer-heroku-buildpack", + "https://github.com/heroku/heroku-buildpack-nodejs", ] ) diff --git a/hikka/main.py b/hikka/main.py index 0dafeca..2fe130e 100755 --- a/hikka/main.py +++ b/hikka/main.py @@ -690,7 +690,7 @@ class Hikka: "This process might take several minutes, be patient." ) - app = heroku.publish(self.clients, key, self.api_token) + app = heroku.publish(key, self.api_token) print( "Installed to heroku successfully!\n" "🎉 App URL: {}".format(app.web_url)