Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Dirty hack for utils module
  • Loading branch information
Bret Ambrose committed May 19, 2025
commit 06dcf117c627b95695f22cd1faabda3f07db107a
4 changes: 1 addition & 3 deletions samples/deprecated/fleetprovisioning.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@
import time
import traceback
import json

sys.path.append("../utils")
from command_line_utils import CommandLineUtils
from utils.command_line_utils import CommandLineUtils

# - Overview -
# This sample uses the AWS IoT Fleet Provisioning to provision device using either the keys
Expand Down
3 changes: 1 addition & 2 deletions samples/deprecated/fleetprovisioning_mqtt5.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@
import time
import traceback
import json
sys.path.append("../utils")
from command_line_utils import CommandLineUtils
from utils.command_line_utils import CommandLineUtils

# - Overview -
# This sample uses the AWS IoT Fleet Provisioning to provision device using either the keys
Expand Down
3 changes: 1 addition & 2 deletions samples/deprecated/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@
import time
import traceback
import time
sys.path.append("../utils")
from command_line_utils import CommandLineUtils
from utils.command_line_utils import CommandLineUtils

# - Overview -
# This sample uses the AWS IoT Jobs Service to get a list of pending jobs and
Expand Down
3 changes: 1 addition & 2 deletions samples/deprecated/jobs_mqtt5.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@
import time
import traceback
import time
sys.path.append("../utils")
from command_line_utils import CommandLineUtils
from utils.command_line_utils import CommandLineUtils

# - Overview -
# This sample uses the AWS IoT Jobs Service to get a list of pending jobs and
Expand Down
3 changes: 1 addition & 2 deletions samples/deprecated/shadow.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@
import threading
import traceback
from uuid import uuid4
sys.path.append("../utils")
from command_line_utils import CommandLineUtils
from utils.command_line_utils import CommandLineUtils

# - Overview -
# This sample uses the AWS IoT Device Shadow Service to keep a property in
Expand Down
3 changes: 1 addition & 2 deletions samples/deprecated/shadow_mqtt5.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@
import threading
import traceback
from uuid import uuid4
sys.path.append("../utils")
from command_line_utils import CommandLineUtils
from utils.command_line_utils import CommandLineUtils

# - Overview -
# This sample uses the AWS IoT Device Shadow Service to keep a property in
Expand Down
Loading
Loading