mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 13:03:29 +00:00
ruff: Fix UP006 Use list instead of List for type annotation.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
committed by
Tim Abbott
parent
c2214b3904
commit
e08a24e47f
@@ -1,5 +1,4 @@
|
||||
import hashlib
|
||||
from typing import Dict
|
||||
|
||||
from django.conf import settings
|
||||
from django.db import models
|
||||
@@ -50,7 +49,7 @@ class Client(models.Model):
|
||||
)
|
||||
|
||||
|
||||
get_client_cache: Dict[str, Client] = {}
|
||||
get_client_cache: dict[str, Client] = {}
|
||||
|
||||
|
||||
def clear_client_cache() -> None: # nocoverage
|
||||
|
||||
Reference in New Issue
Block a user