Skip to content

Commit

Permalink
rpcclient: fix docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
doronz88 committed Feb 16, 2022
1 parent b14e148 commit f3e1d8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rpcclient/rpcclient/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
from construct import Int64sl
from traitlets.config import Config

from rpcclient.darwin.structs import pid_t, exitcode_t
from rpcclient.exceptions import ArgumentError, SymbolAbsentError, SpawnError
from rpcclient.fs import Fs
from rpcclient.network import Network
from rpcclient.processes import Processes
from rpcclient.protocol import protocol_message_t, cmd_type_t, exec_chunk_t, exec_chunk_type_t, UNAME_VERSION_LEN, \
reply_protocol_message_t, dummy_block_t
from rpcclient.darwin.structs import pid_t, exitcode_t
from rpcclient.symbol import Symbol
from rpcclient.symbols_jar import SymbolsJar

Expand Down Expand Up @@ -83,7 +83,7 @@ def info(self):
print(f'progname: {self.symbols.getprogname().peek_str()}')

def uname(self):
""" get the utsname struct from remote"""
""" get the utsname struct from remote """
raise NotImplementedError()

def dlopen(self, filename: str, mode: int) -> Symbol:
Expand Down

0 comments on commit f3e1d8f

Please sign in to comment.