From 46ea56d4a7a59c2b7b811265231fd1c4ba4dd8ed Mon Sep 17 00:00:00 2001 From: Jillian Vogel Date: Tue, 18 Jun 2024 17:01:46 +0930 Subject: [PATCH] fix: linting --- tutoraspects/plugin.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tutoraspects/plugin.py b/tutoraspects/plugin.py index e0ee520fb..0bb93102f 100644 --- a/tutoraspects/plugin.py +++ b/tutoraspects/plugin.py @@ -6,6 +6,7 @@ import random import string from glob import glob +import typing as t import bcrypt import importlib_resources @@ -440,6 +441,7 @@ ] ) + @hooks.Filters.APP_PUBLIC_HOSTS.add() def _aspects_public_hosts( hosts: list[str], context_name: t.Literal["local", "dev"]