Skip to content

Commit 475b406

Browse files
committed
Fixed renamed interfaces
1 parent 7f49444 commit 475b406

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

sdbus_async/networkmanager/objects.py

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
class NetworkManager(NetworkManagerInterfaceAsync):
7171
"""Network Manger main object
7272
73-
Implements :py:class:`NetworkManagerInterface`
73+
Implements :py:class:`NetworkManagerInterfaceAsync`
7474
7575
Service name ``'org.freedesktop.NetworkManager'``
7676
and object path ``/org/freedesktop/NetworkManager`` is predetermined.
@@ -92,7 +92,7 @@ class NetworkManagerAgentManager(
9292
NetworkManagerSecretAgentManagerInterfaceAsync):
9393
"""NetworkManager secrets manager
9494
95-
Implements :py:class:`NetworkManagerSecretAgentManagerInterface`.
95+
Implements :py:class:`NetworkManagerSecretAgentManagerInterfaceAsync`.
9696
9797
Service name ``'org.freedesktop.NetworkManager'``
9898
and object path ``/org/freedesktop/NetworkManager/AgentManager``
@@ -114,7 +114,7 @@ def __init__(self, bus: Optional[SdBus] = None) -> None:
114114
class NetworkManagerDnsManager(NetworkManagerDnsManagerInterfaceAsync):
115115
"""NetworkManager DNS manager
116116
117-
Implements :py:class:`NetworkManagerDnsManagerInterface`.
117+
Implements :py:class:`NetworkManagerDnsManagerInterfaceAsync`.
118118
119119
Service name ``'org.freedesktop.NetworkManager'``
120120
and object path ``/org/freedesktop/NetworkManager/DnsManager``
@@ -136,7 +136,7 @@ def __init__(self, bus: Optional[SdBus] = None) -> None:
136136
class NetworkManagerSettings(NetworkManagerSettingsInterfaceAsync):
137137
"""NetworkManager settings
138138
139-
Implements :py:class:`NetworkManagerSettingsInterface`.
139+
Implements :py:class:`NetworkManagerSettingsInterfaceAsync`.
140140
141141
Service name ``'org.freedesktop.NetworkManager'``
142142
and object path ``/org/freedesktop/NetworkManager/DnsManager``
@@ -159,7 +159,7 @@ class NetworkConnectionSettings(
159159
NetworkManagerSettingsConnectionInterfaceAsync):
160160
"""Setting of specific connection
161161
162-
Implements :py:class:`NetworkManagerSettingsConnectionInterface`
162+
Implements :py:class:`NetworkManagerSettingsConnectionInterfaceAsync`
163163
"""
164164

165165
def __init__(self, settings_path: str,
@@ -820,7 +820,7 @@ def __init__(self, device_path: str, bus: Optional[SdBus] = None) -> None:
820820
class ActiveConnection(NetworkManagerConnectionActiveInterfaceAsync):
821821
"""Active connection object
822822
823-
Implements :py:class:`NetworkManagerConnectionActiveInterface`
823+
Implements :py:class:`NetworkManagerConnectionActiveInterfaceAsync`
824824
"""
825825

826826
def __init__(self, connection_path: str,
@@ -846,16 +846,16 @@ class ActiveVPNConnection(
846846
NetworkManagerVPNConnectionInterfaceAsync):
847847
"""Active VPN connection object
848848
849-
Implements :py:class:`NetworkManagerConnectionActiveInterface`
850-
and :py:class:`NetworkManagerVPNConnectionInterface`
849+
Implements :py:class:`NetworkManagerConnectionActiveInterfaceAsync`
850+
and :py:class:`NetworkManagerVPNConnectionInterfaceAsync`
851851
"""
852852
...
853853

854854

855855
class IPv4Config(NetworkManagerIP4ConfigInterfaceAsync):
856856
"""IPv4 configuration interface
857857
858-
Implements :py:class:`NetworkManagerIP4ConfigInterface`
858+
Implements :py:class:`NetworkManagerIP4ConfigInterfaceAsync`
859859
"""
860860

861861
def __init__(self, ip4_path: str, bus: Optional[SdBus] = None) -> None:
@@ -878,7 +878,7 @@ def __init__(self, ip4_path: str, bus: Optional[SdBus] = None) -> None:
878878
class IPv6Config(NetworkManagerIP6ConfigInterfaceAsync):
879879
"""IPv6 configuration interface
880880
881-
Implements :py:class:`NetworkManagerIP6ConfigInterface`
881+
Implements :py:class:`NetworkManagerIP6ConfigInterfaceAsync`
882882
"""
883883

884884
def __init__(self, ip6_path: str, bus: Optional[SdBus] = None) -> None:
@@ -901,7 +901,7 @@ def __init__(self, ip6_path: str, bus: Optional[SdBus] = None) -> None:
901901
class DHCPv4Config(NetworkManagerDHCP4ConfigInterfaceAsync):
902902
"""DHCPv4 configuration interface
903903
904-
Implements :py:class:`NetworkManagerDHCP4ConfigInterface`
904+
Implements :py:class:`NetworkManagerDHCP4ConfigInterfaceAsync`
905905
"""
906906

907907
def __init__(self, dhcp4_path: str, bus: Optional[SdBus] = None) -> None:
@@ -924,7 +924,7 @@ def __init__(self, dhcp4_path: str, bus: Optional[SdBus] = None) -> None:
924924
class DHCPv6Config(NetworkManagerDHCP6ConfigInterfaceAsync):
925925
"""DHCPv6 configuration interface
926926
927-
Implements :py:class:`NetworkManagerDHCP6ConfigInterface`
927+
Implements :py:class:`NetworkManagerDHCP6ConfigInterfaceAsync`
928928
"""
929929

930930
def __init__(self, dhcpv6_path: str, bus: Optional[SdBus] = None) -> None:
@@ -947,7 +947,7 @@ def __init__(self, dhcpv6_path: str, bus: Optional[SdBus] = None) -> None:
947947
class AccessPoint(NetworkManagerAccessPointInterfaceAsync):
948948
"""Access Point (WiFi point) object
949949
950-
Implements :py:class:`NetworkManagerAccessPointInterface`
950+
Implements :py:class:`NetworkManagerAccessPointInterfaceAsync`
951951
"""
952952

953953
def __init__(self, point_path: str, bus: Optional[SdBus] = None) -> None:
@@ -970,7 +970,7 @@ def __init__(self, point_path: str, bus: Optional[SdBus] = None) -> None:
970970
class WiFiP2PPeer(NetworkManagerWifiP2PPeerInterfaceAsync):
971971
"""WiFi peer object
972972
973-
Implements :py:class:`NetworkManagerWifiP2PPeerInterface`
973+
Implements :py:class:`NetworkManagerWifiP2PPeerInterfaceAsync`
974974
"""
975975

976976
def __init__(self, peer_path: str, bus: Optional[SdBus] = None) -> None:
@@ -993,7 +993,7 @@ def __init__(self, peer_path: str, bus: Optional[SdBus] = None) -> None:
993993
class ConfigCheckpoint(NetworkManagerCheckpointInterfaceAsync):
994994
"""Configuration checkpoint interface
995995
996-
Implements :py:class:`NetworkManagerCheckpointInterface`
996+
Implements :py:class:`NetworkManagerCheckpointInterfaceAsync`
997997
"""
998998

999999
def __init__(self, checkpoint_path: str,

0 commit comments

Comments
 (0)