fix: action

This commit is contained in:
feng
2022-11-16 19:35:16 +08:00
parent 21d24ae4bc
commit ec462e09e0
3 changed files with 10 additions and 9 deletions

View File

@@ -10,11 +10,11 @@ __all__ = ["ActionChoices"]
class ActionChoices(BitChoices):
connect = bit(0), _("Connect")
upload = bit(1), _("Upload")
download = bit(2), _("Download")
copy = bit(3), _("Copy")
paste = bit(4), _("Paste")
connect = bit(1), _("Connect")
upload = bit(2), _("Upload")
download = bit(3), _("Download")
copy = bit(4), _("Copy")
paste = bit(5), _("Paste")
@classmethod
def is_tree(cls):