Removed unused TODO file

This commit is contained in:
Casey 2023-05-08 17:35:16 +03:00
parent 6e24781d76
commit fb7d5b8e44
Signed by: hkc
GPG Key ID: F0F6CFE11CDB0960
2 changed files with 2 additions and 9 deletions

7
TODO
View File

@ -1,7 +0,0 @@
[integrations,core] Add database support so remote messages are stored and can be used to reply to them
[core] Somehow find a way to get your user ID by token
[core] Maybe get rid of `main.list` field and create one automatically on a startup?
[integrations] Add support for shellscript integration
[integrations] Add formatting option
[integrations] Add filters
[integrations,vk] Add VK integration

View File

@ -158,7 +158,7 @@ class AttachmentMetaImage:
**{f.name: data[f.name] for f in fields(cls) if f.name in data},
original=cls.AttachmentMetaImageDimensions(**data["original"]),
small=cls.AttachmentMetaImageDimensions(**data["small"]),
focus=cls.Vec2F(**data["focus"])
focus=cls.Vec2F(**data["focus"]),
)
@ -197,7 +197,7 @@ class AttachmentMetaVideo:
return cls(
**data,
original=cls.AttachmentMetaVideoOriginal(**data["original"]),
small=cls.AttachmentMetaVideoSmall(**data["small"])
small=cls.AttachmentMetaVideoSmall(**data["small"]),
)