1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00

avatars can be null appearently

This commit is contained in:
Steffo 2020-07-23 02:23:47 +02:00
parent e04d4d79d7
commit 7eff7f4880
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@
[tool.poetry] [tool.poetry]
name = "royalpack" name = "royalpack"
version = "5.13.7" version = "5.13.8"
description = "A Royalnet command pack for the Royal Games community" description = "A Royalnet command pack for the Royal Games community"
authors = ["Stefano Pigozzi <ste.pigozzi@gmail.com>"] authors = ["Stefano Pigozzi <ste.pigozzi@gmail.com>"]
license = "AGPL-3.0+" license = "AGPL-3.0+"

View file

@ -42,7 +42,7 @@ class Osu(Updatable):
@declared_attr @declared_attr
def avatar_url(self): def avatar_url(self):
return Column(String, nullable=False) return Column(String)
@declared_attr @declared_attr
def standard_pp(self): def standard_pp(self):