forked from hkc/mastoposter
Removed unused TODO file
This commit is contained in:
parent
6e24781d76
commit
fb7d5b8e44
7
TODO
7
TODO
|
@ -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
|
|
@ -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"]),
|
||||
)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue