Skip to content

Commit 5730982

Browse files
committed
style: sort imports
Signed-off-by: Alexander Tkachev <[email protected]>
1 parent 14fdbfc commit 5730982

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

cloudevents/pydantic/event.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
import pydantic
1818

1919
from cloudevents.pydantic import event_attribute_types
20-
from cloudevents.sdk.event import defaults
2120
from cloudevents.pydantic.json_format import ce_json_dumps, ce_json_loads
21+
from cloudevents.sdk.event import defaults
2222

2323

2424
class CloudEvent(pydantic.BaseModel):

cloudevents/pydantic/json_format.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
import re
1+
import base64
22
import json
3+
import re
34
import typing
4-
import base64
5-
65

76
_NON_BINARY_JSON_DATA_KEY = "data"
87
_BINARY_JSON_DATA_KEY = "data_base64"

0 commit comments

Comments
 (0)