diff options
-rw-r--r-- | gsxws/comptia.py | 2 | ||||
-rw-r--r-- | gsxws/escalations.py | 2 | ||||
-rw-r--r-- | gsxws/lookups.py | 2 | ||||
-rw-r--r-- | gsxws/parts.py | 2 | ||||
-rw-r--r-- | gsxws/products.py | 2 | ||||
-rw-r--r-- | gsxws/repairs.py | 1 | ||||
-rw-r--r-- | gsxws/returns.py | 2 |
7 files changed, 13 insertions, 0 deletions
diff --git a/gsxws/comptia.py b/gsxws/comptia.py index 5502cae..bdbc7d4 100644 --- a/gsxws/comptia.py +++ b/gsxws/comptia.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- + import logging from core import GsxObject, GsxCache diff --git a/gsxws/escalations.py b/gsxws/escalations.py index bb78db1..2bf56e1 100644 --- a/gsxws/escalations.py +++ b/gsxws/escalations.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- + from core import GsxObject diff --git a/gsxws/lookups.py b/gsxws/lookups.py index 0965328..d05eea3 100644 --- a/gsxws/lookups.py +++ b/gsxws/lookups.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- + import sys import base64 import logging diff --git a/gsxws/parts.py b/gsxws/parts.py index 536c6aa..1d21165 100644 --- a/gsxws/parts.py +++ b/gsxws/parts.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- + import urllib import tempfile diff --git a/gsxws/products.py b/gsxws/products.py index 21c59d8..3042109 100644 --- a/gsxws/products.py +++ b/gsxws/products.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- + """ https://gsxwsut.apple.com/apidocs/ut/html/WSAPIChangeLog.html?user=asp """ diff --git a/gsxws/repairs.py b/gsxws/repairs.py index 13bf4e5..bbd2af4 100644 --- a/gsxws/repairs.py +++ b/gsxws/repairs.py @@ -45,6 +45,7 @@ class RepairOrderLine(GsxObject): class ServicePart(GsxObject): "A generic service part (for PartInfo and whatnot)" + def __init__(self, number, *args, **kwargs): super(ServicePart, self).__init__(*args, **kwargs) diff --git a/gsxws/returns.py b/gsxws/returns.py index 96e61f5..2789942 100644 --- a/gsxws/returns.py +++ b/gsxws/returns.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- + from core import GsxObject, validate RETURN_TYPES = ( |