1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00
This commit is contained in:
Steffo 2020-02-18 23:56:55 +01:00
parent 5220201434
commit 16adaea355
3 changed files with 20 additions and 4 deletions

View file

@ -13,8 +13,6 @@ class DndinfoCommand(Command):
tables = {DndCharacter, DndActiveCharacter} tables = {DndCharacter, DndActiveCharacter}
async def run(self, args: CommandArgs, data: CommandData) -> None: async def run(self, args: CommandArgs, data: CommandData) -> None:
author = await data.get_author(error_if_none=True)
active_character = await get_active_character(data) active_character = await get_active_character(data)
char = active_character.character char = active_character.character

View file

@ -0,0 +1,19 @@
from sqlalchemy import *
from sqlalchemy.orm import *
from sqlalchemy.ext.declarative import declared_attr
class DndBattle:
__tablename__ = "dndbattle"
@declared_attr
def id(self):
return Column(Integer, primary_key=True)
@declared_attr
def name(self):
return Column(String, nullable=False)
@declared_attr
def description(self):
return Column(String, nullable=False)

View file

@ -1,2 +1 @@
semantic = "5.1.4" semantic = "5.2"