From 7b61c31590fc4fcf9b39e0b6d9cc4ab4c398066c Mon Sep 17 00:00:00 2001 From: jelanmathewjames <72068016+jelanmathewjames@users.noreply.github.com> Date: Sat, 10 Aug 2024 19:19:17 +0530 Subject: [PATCH] Update types.py --- utils/types.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/utils/types.py b/utils/types.py index d4431952..5eafabde 100644 --- a/utils/types.py +++ b/utils/types.py @@ -156,7 +156,8 @@ def get_all_values(cls): class TFPTasksHashtags(Enum): SCRATCH = '#tfp2.0-scratch' COMMAND_LINE = '#tfp2.0-command-line' - + GIT_GITHUB = '#tfp2.0-git-github' + @classmethod def get_all_values(cls): return [member.value for member in cls]