minecraft_manager/bot/utils.py

8 lines
170 B
Python

from minecraft_manager.models import Application
def get_application(app_id):
try:
return Application.objects.get(id=app_id)
except:
return None