Skip to content

Commit efeebdd

Browse files
Added copyright notice on all Python files
1 parent 82e654d commit efeebdd

29 files changed

+145
-0
lines changed

connect/__init__.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# -*- coding: utf-8 -*-
22

3+
"""
4+
This file is part of the Ingram Micro Cloud Blue Connect SDK.
5+
Copyright (c) 2019 Ingram Micro. All Rights Reserved.
6+
"""
7+
38
from .resource import FulfillmentAutomation
49

510
name = 'connect'

connect/config.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# -*- coding: utf-8 -*-
22

3+
"""
4+
This file is part of the Ingram Micro Cloud Blue Connect SDK.
5+
Copyright (c) 2019 Ingram Micro. All Rights Reserved.
6+
"""
7+
38
import json
49
import os
510

connect/logger/__init__.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# -*- coding: utf-8 -*-
22

3+
"""
4+
This file is part of the Ingram Micro Cloud Blue Connect SDK.
5+
Copyright (c) 2019 Ingram Micro. All Rights Reserved.
6+
"""
7+
38
from .logger import function_log, logger
49

510
# TODO add auto settings for cloud platforms

connect/logger/logger.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# -*- coding: utf-8 -*-
22

3+
"""
4+
This file is part of the Ingram Micro Cloud Blue Connect SDK.
5+
Copyright (c) 2019 Ingram Micro. All Rights Reserved.
6+
"""
7+
38
import json
49
import logging
510
import os

connect/models/__init__.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# -*- coding: utf-8 -*-
22

3+
"""
4+
This file is part of the Ingram Micro Cloud Blue Connect SDK.
5+
Copyright (c) 2019 Ingram Micro. All Rights Reserved.
6+
"""
7+
38
from .activation_response import ActivationTemplateResponse, ActivationTileResponse
49
from .base import BaseSchema
510
from .fulfillment import FulfillmentSchema

connect/models/activation_response.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# -*- coding: utf-8 -*-
22

3+
"""
4+
This file is part of the Ingram Micro Cloud Blue Connect SDK.
5+
Copyright (c) 2019 Ingram Micro. All Rights Reserved.
6+
"""
7+
38
import json
49

510

connect/models/asset.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# -*- coding: utf-8 -*-
22

3+
"""
4+
This file is part of the Ingram Micro Cloud Blue Connect SDK.
5+
Copyright (c) 2019 Ingram Micro. All Rights Reserved.
6+
"""
7+
38
from marshmallow import fields, post_load
49

510
from .base import BaseModel, BaseSchema

connect/models/base.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# -*- coding: utf-8 -*-
22

3+
"""
4+
This file is part of the Ingram Micro Cloud Blue Connect SDK.
5+
Copyright (c) 2019 Ingram Micro. All Rights Reserved.
6+
"""
7+
38
from marshmallow import Schema, fields, post_load
49

510

connect/models/company.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# -*- coding: utf-8 -*-
22

3+
"""
4+
This file is part of the Ingram Micro Cloud Blue Connect SDK.
5+
Copyright (c) 2019 Ingram Micro. All Rights Reserved.
6+
"""
7+
38
from marshmallow import fields, post_load
49

510
from .base import BaseModel, BaseSchema

connect/models/connection.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# -*- coding: utf-8 -*-
22

3+
"""
4+
This file is part of the Ingram Micro Cloud Blue Connect SDK.
5+
Copyright (c) 2019 Ingram Micro. All Rights Reserved.
6+
"""
7+
38
from marshmallow import fields, post_load
49

510
from .base import BaseModel, BaseSchema

0 commit comments

Comments
 (0)