Skip to content

Commit

Permalink
Fix typing inaccuracies
Browse files Browse the repository at this point in the history
  • Loading branch information
fsbraun committed Jan 4, 2025
1 parent cc73e23 commit 90153ea
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions djangocms_text/editors.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

from typing import Optional
from collections.abc import Iterable

Expand Down Expand Up @@ -436,9 +438,9 @@ def __init__(
self,
name: str,
config: str,
js: Iterable[str] = None,
css: dict = None,
admin_css: dict = None,
js: Iterable[str] | None = None,
css: dict | None = None,
admin_css: dict | None = None,
inline_editing: bool = False,
child_plugin_support: bool = False,
):
Expand Down

0 comments on commit 90153ea

Please sign in to comment.