From f7e83611f1fb76e88d75fa762cf2621ce00d3c85 Mon Sep 17 00:00:00 2001 From: Iain Learmonth Date: Sun, 15 May 2022 18:47:46 +0100 Subject: [PATCH] auto/base: type hint metadata --- app/terraform/__init__.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/terraform/__init__.py b/app/terraform/__init__.py index c696137..18ccc9a 100644 --- a/app/terraform/__init__.py +++ b/app/terraform/__init__.py @@ -5,7 +5,10 @@ from app import app class BaseAutomation: - short_name = None + short_name: str = "base" + description: str = "Abstract base automation." + frequency: int + """ The short name of the automation provider. This is used as an opaque token throughout the portal system.