mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 06:12:55 +00:00
810468a57f
* test_: create private group tests * test_: set privileged False for jenkins * test_: run baseline tests in rpc suite * test_: address review comments * test_: address review comments
12 lines
312 B
Python
12 lines
312 B
Python
from clients.rpc import RpcClient
|
|
from clients.services.service import Service
|
|
|
|
|
|
class SettingsService(Service):
|
|
def __init__(self, client: RpcClient):
|
|
super().__init__(client, "settings")
|
|
|
|
def get_settings(self):
|
|
response = self.rpc_request("getSettings")
|
|
return response.json()
|