summaryrefslogtreecommitdiffstats
path: root/core/htmx.py
diff options
context:
space:
mode:
authorPaolo Melchiorre2022-12-05 18:38:37 +0100
committerGitHub2022-12-05 10:38:37 -0700
commita9bb4a7122df6d9d4a764de52244c6ec75789ead (patch)
tree14ba582f72ac5e3b133b3644ca03e0f027e7c2ef /core/htmx.py
parentdd8e823d2f3ef22fcaa1e43e74f11f7e49eff9e7 (diff)
downloadtakahe-a9bb4a7122df6d9d4a764de52244c6ec75789ead.tar.gz
takahe-a9bb4a7122df6d9d4a764de52244c6ec75789ead.tar.bz2
takahe-a9bb4a7122df6d9d4a764de52244c6ec75789ead.zip
Add pyupgrade with --py310-plus in pre-commit (#103)
Diffstat (limited to 'core/htmx.py')
-rw-r--r--core/htmx.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/core/htmx.py b/core/htmx.py
index c83fba9..a6cf6dd 100644
--- a/core/htmx.py
+++ b/core/htmx.py
@@ -1,8 +1,5 @@
-from typing import Optional
-
-
class HTMXMixin:
- template_name_htmx: Optional[str] = None
+ template_name_htmx: str | None = None
def get_template_name(self):
if self.request.htmx and self.template_name_htmx: