Skip to content

Commit 9489ec2

Browse files
committed
Optimize imports in integration test Python files
1 parent 6b53323 commit 9489ec2

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

tests/conftest.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,13 @@
2121
# Arduino software without disclosing the source code of your own applications.
2222
# To purchase a commercial license, send an email to [email protected].
2323
#
24-
import pytest
24+
import json
2525
import pathlib
2626
import platform
2727
import typing
28+
2829
import invoke.context
29-
import json
30+
import pytest
3031

3132

3233
@pytest.fixture

tests/test_sync.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
# To purchase a commercial license, send an email to [email protected].
2121
#
2222

23-
import string
24-
import re
2523
import hashlib
2624
import json
27-
import pathlib
2825
import math
26+
import pathlib
27+
import re
28+
import string
2929

3030
test_data_path = pathlib.Path(__file__).resolve().parent.joinpath("testdata")
3131
size_comparison_tolerance = 0.03 # Maximum allowed archive size difference ratio

0 commit comments

Comments
 (0)