Skip to content

Commit

Permalink
Fix restyle
Browse files Browse the repository at this point in the history
  • Loading branch information
raul-marquez-csa committed Jan 29, 2024
1 parent 7f61620 commit 76f85da
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/python_testing/TC_SC_4_10.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
import logging

from matter_testing_support import MatterBaseTest, async_test_body, default_matter_test_main
from operational_mdns_discovery import OperationalMdnsDiscovery
from mobly import asserts
from operational_mdns_discovery import OperationalMdnsDiscovery

'''
Category:
Expand Down
5 changes: 4 additions & 1 deletion src/python_testing/operational_mdns_discovery.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,15 @@
#

import time
from typing import Union, Dict
from typing import Dict, Union

from mobly import asserts
from zeroconf import ServiceListener, Zeroconf
from zeroconf.asyncio import AsyncServiceInfo, AsyncZeroconf, AsyncZeroconfServiceTypes

MDNS_TYPE_OPERATIONAL = "_matter._tcp.local."


class EmptyServiceListener(ServiceListener):
'''
A service listener for the TXT record data to get populated
Expand Down Expand Up @@ -61,6 +63,7 @@ class OperationalMdnsDiscovery:
Args:
tc: An instance of a test case.
"""

def __init__(self, tc):
"""
Initializes the OperationalMdnsHelper instance with a given test case.
Expand Down

0 comments on commit 76f85da

Please sign in to comment.