Skip to content

Commit fdd670e

Browse files
author
BiffoBear
committed
Put typing import in try - except block.
1 parent b6a52ce commit fdd670e

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

adafruit_wiznet5k/adafruit_wiznet5k_dns.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
from typing import Tuple
2020
except ImportError:
2121
pass
22-
2322
import time
2423
from random import getrandbits
2524
from micropython import const

tests/test_parse_dns_function.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
SHOW_DEBUG_MESSAGES = False
1010

1111

12-
@pytest.mark.skip(reason="Not currently under development")
12+
# @pytest.mark.skip(reason="Not currently under development")
1313
@pytest.mark.parametrize(
1414
"request_id, request_length, dns_bytes_recv, ipv4",
1515
(

0 commit comments

Comments
 (0)