Skip to content
This repository was archived by the owner on Mar 4, 2026. It is now read-only.

Commit 6a7d150

Browse files
committed
add SPDX license identifier to all possible files
1 parent e78f3af commit 6a7d150

16 files changed

Lines changed: 24 additions & 0 deletions

packet/Device.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# -*- coding: utf-8 -*-
2+
# SPDX-License-Identifier: LGPL-3.0-only
23

34
from .OperatingSystem import OperatingSystem
45

packet/Facility.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# -*- coding: utf-8 -*-
2+
# SPDX-License-Identifier: LGPL-3.0-only
23

34

45
class Facility:

packet/Manager.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# -*- coding: utf-8 -*-
2+
# SPDX-License-Identifier: LGPL-3.0-only
3+
24
from .baseapi import BaseAPI
35
from .baseapi import Error as PacketError
46
from .Plan import Plan

packet/OperatingSystem.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# -*- coding: utf-8 -*-
2+
# SPDX-License-Identifier: LGPL-3.0-only
23

34

45
class OperatingSystem(object):

packet/Plan.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# -*- coding: utf-8 -*-
2+
# SPDX-License-Identifier: LGPL-3.0-only
23

34

45
class Plan:

packet/Project.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# -*- coding: utf-8 -*-
2+
# SPDX-License-Identifier: LGPL-3.0-only
23

34

45
class Project:

packet/SSHKey.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# -*- coding: utf-8 -*-
2+
# SPDX-License-Identifier: LGPL-3.0-only
23

34

45
class SSHKey:

packet/Volume.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# -*- coding: utf-8 -*-
2+
# SPDX-License-Identifier: LGPL-3.0-only
23

34
from .Plan import Plan
45
from .Facility import Facility

packet/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# -*- coding: utf-8 -*-
2+
# SPDX-License-Identifier: LGPL-3.0-only
3+
24
"""library to interact with the Packet API"""
35

46
__version__ = "1.0"

packet/baseapi.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# -*- coding: utf-8 -*-
2+
# SPDX-License-Identifier: LGPL-3.0-only
3+
24
import json
35
import logging
46
import requests

0 commit comments

Comments
 (0)