Skip to content

Commit 82e654d

Browse files
Explicitly specified UTF-8 encoding on all Python files
1 parent eb0dd0f commit 82e654d

23 files changed

+44
-0
lines changed

connect/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
from .resource import FulfillmentAutomation
24

35
name = 'connect'

connect/logger/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
from .logger import function_log, logger
24

35
# TODO add auto settings for cloud platforms

connect/models/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
from .activation_response import ActivationTemplateResponse, ActivationTileResponse
24
from .base import BaseSchema
35
from .fulfillment import FulfillmentSchema

connect/models/activation_response.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
import json
24

35

connect/models/asset.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
from marshmallow import fields, post_load
24

35
from .base import BaseModel, BaseSchema

connect/models/base.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
from marshmallow import Schema, fields, post_load
24

35

connect/models/company.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
from marshmallow import fields, post_load
24

35
from .base import BaseModel, BaseSchema

connect/models/connection.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
from marshmallow import fields, post_load
24

35
from .base import BaseModel, BaseSchema

connect/models/exception.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
from .server_error import ServerError
24

35

connect/models/fulfillment.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# -*- coding: utf-8 -*-
2+
13
from marshmallow import fields, post_load
24

35
from .asset import AssetSchema

0 commit comments

Comments
 (0)