daemon: formatting changes related to updating the python black formatter

This commit is contained in:
Blake Harnden 2023-02-03 15:53:44 -08:00
parent 4c351b0d72
commit 93272d6ed7
5 changed files with 10 additions and 10 deletions

View file

@ -117,7 +117,7 @@ def link_iface(iface_proto: core_pb2.Interface) -> InterfaceData:
def add_link_data(
link_proto: core_pb2.Link
link_proto: core_pb2.Link,
) -> Tuple[InterfaceData, InterfaceData, LinkOptions]:
"""
Convert link proto to link interfaces and options data.

View file

@ -753,7 +753,7 @@ class CoreClient:
return self.client.get_config_service_rendered(self.session.id, node_id, name)
def get_config_service_configs_proto(
self
self,
) -> List[configservices_pb2.ConfigServiceConfig]:
config_service_protos = []
for node in self.session.nodes.values():

View file

@ -9,7 +9,7 @@ class TestUtils:
no_args = "()"
one_arg = "('one',)"
two_args = "('one', 'two')"
unicode_args = u"('one', 'two', 'three')"
unicode_args = "('one', 'two', 'three')"
# when
no_args = utils.make_tuple_fromstr(no_args, str)