Skip to content

Commit

Permalink
fix ruff issues
Browse files Browse the repository at this point in the history
  • Loading branch information
fsbraun committed Dec 21, 2024
1 parent ca93044 commit 9a0c49f
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions djangocms_text/editors.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,20 +174,20 @@ def default(self, obj):
"required": False,
},
{
"type": 'section',
"type": "section",
"label": _("Link options"),
"content": [
{
"name": 'target',
"label": 'Target',
"type": 'select',
"name": "target",
"label": "Target",
"type": "select",
"options": [
{"value": '', "label": '-----'},
{"value": '_blank', "label": _('New window')},
{"value": '_self', "label": _('Same window')},
{"value": '_parent', "label": _('Parent window')},
{"value": "", "label": "-----"},
{"value": "_blank", "label": _("New window")},
{"value": "_self", "label": _("Same window")},
{"value": "_parent", "label": _("Parent window")},
],
"required": False
"required": False,
}
],
},
Expand Down

0 comments on commit 9a0c49f

Please sign in to comment.