Skip to content

Commit

Permalink
Added little bit of doc strings to pass tests
Browse files Browse the repository at this point in the history
  • Loading branch information
igo95862 committed Mar 3, 2021
1 parent 0ad75e5 commit 2651e12
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/sdbus/proxies/freedesktop.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,12 @@ def __init__(self, bus: Optional[SdBus] = None):

@dbus_method('s', method_name='GetConnectionUnixProcessID')
def get_connection_pid(self, service_name: str) -> int:
"""Get Process Id that owns the name"""
raise NotImplementedError

@dbus_method('s', method_name='GetConnectionUnixUser')
def get_connection_uid(self, service_name: str) -> int:
"""Get process User Id that owns the name"""
raise NotImplementedError

@dbus_method()
Expand Down Expand Up @@ -73,6 +75,7 @@ def start_service_by_name(

@dbus_property('as')
def features(self) -> List[str]:
"""D-Bus implementation features"""
raise NotImplementedError

@dbus_property('as')
Expand Down

0 comments on commit 2651e12

Please sign in to comment.