Skip to content

Commit 5839bc5

Browse files
committed
Formatting
1 parent 2712869 commit 5839bc5

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

driftbase/api/clients.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,17 @@
1212
import http.client as http_client
1313
import json
1414
import logging
15+
1516
import marshmallow as ma
17+
from drift.blueprint import Blueprint, abort
18+
from drift.core.extensions.jwt import current_user, issue_token, split_token
19+
from drift.core.extensions.urlregistry import Endpoints
20+
from drift.utils import json_response
1621
from flask import request, url_for, g, current_app
1722
from flask.views import MethodView
18-
from drift.blueprint import Blueprint, abort
1923
from flask_marshmallow.fields import AbsoluteURLFor
2024
from marshmallow_sqlalchemy import SQLAlchemyAutoSchema
2125

22-
from drift.core.extensions.jwt import current_user, issue_token, split_token
23-
from drift.core.extensions.urlregistry import Endpoints
24-
from drift.utils import json_response
2526
from driftbase.config import get_client_heartbeat_config
2627
from driftbase.models.db import (
2728
User, CorePlayer, Client, UserIdentity
@@ -64,8 +65,8 @@ class Meta:
6465
exclude = ()
6566

6667
client_url = AbsoluteURLFor('clients.entry',
67-
doc="Fully qualified URL of the client resource",
68-
client_id='<client_id>')
68+
doc="Fully qualified URL of the client resource",
69+
client_id='<client_id>')
6970

7071

7172
class ClientPostRequestSchema(ma.Schema):

0 commit comments

Comments
 (0)