change filenames to snake_case as well

This commit is contained in:
Lili (Tlapka) 2022-08-24 13:47:55 +02:00
parent 23ebe015b9
commit 63b4c73cda
3 changed files with 3 additions and 3 deletions

View File

@ -14,8 +14,8 @@ def create_app(test_config=None):
pass
from . import db
from . import owncastWebhooks
app.register_blueprint(owncastWebhooks.bp)
from . import owncast_webhooks
app.register_blueprint(owncast_webhooks.bp)
db.init_app(app)
return app

View File

@ -1,7 +1,7 @@
from flask import Flask,request,json,Blueprint
from sqlite3 import Error
from tlapbot.db import get_db
from tlapbot.owncastHelpers import user_exists, add_user_to_database, send_chat
from tlapbot.owncast_helpers import user_exists, add_user_to_database, send_chat
bp = Blueprint('owncast_webhooks', __name__)