Skip to content

Commit

Permalink
chore: lint python
Browse files Browse the repository at this point in the history
  • Loading branch information
xuzuodong committed Aug 15, 2024
1 parent 78c6fe4 commit 0da76ff
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ def handle(sender, **kwargs):
site = Site(
app_id=app.id,
title=app.name,
icon_type = app.icon_type,
icon = app.icon,
icon_background = app.icon_background,
icon_type=app.icon_type,
icon=app.icon,
icon_background=app.icon_background,
default_language=account.interface_language,
customize_token_strategy="not_allow",
code=Site.generate_code(16),
Expand Down
2 changes: 1 addition & 1 deletion api/fields/app_fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
"icon_url": AppIconUrlField,
"model_config": fields.Nested(model_config_partial_fields, attribute="app_model_config", allow_null=True),
"created_at": TimestampField,
"tags": fields.List(fields.Nested(tag_fields))
"tags": fields.List(fields.Nested(tag_fields)),
}


Expand Down

0 comments on commit 0da76ff

Please sign in to comment.