Skip to content

Commit 2093abf

Browse files
author
Roman
committed
fix docstrings
1 parent 04d4c42 commit 2093abf

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

bittensor/core/subtensor_api/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ def block(self):
166166

167167
@property
168168
def chain(self):
169-
"""Property to access chain methods."""
169+
"""Property of interaction with chain methods."""
170170
return _Chain(self._subtensor)
171171

172172
@property
@@ -201,7 +201,7 @@ def neurons(self, value):
201201

202202
@property
203203
def queries(self):
204-
"""Property to access queries methods."""
204+
"""Property to access subtensor queries methods."""
205205
return _Queries(self._subtensor)
206206

207207
@property
@@ -211,10 +211,10 @@ def stakes(self):
211211

212212
@property
213213
def subnets(self):
214-
"""Property to access subnets methods."""
214+
"""Property of interaction with subnets methods."""
215215
return _Subnets(self._subtensor)
216216

217217
@property
218218
def wallets(self):
219-
"""Property to access wallets methods."""
219+
"""Property of interaction methods with cold/hotkeys, and balances, etc."""
220220
return _Wallets(self._subtensor)

0 commit comments

Comments
 (0)