Skip to content

Commit

Permalink
1.0.1 First day patch: typing annotation hotfix.
Browse files Browse the repository at this point in the history
  • Loading branch information
PaTara43 committed May 17, 2022
1 parent f09bad7 commit dc4780e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Other functionality is better to be described in `docs/source/usage.rst`
```bash
black -l 120 <modified_file>
```
- Check how the docs look via `make html` from the docs folder and checking the `docs/build/html/index.html` page.
- Check how the docs look via `make html` from the `docs` folder and checking the `docs/build/html/index.html` page.
- Do not bump version.
- One may test the code by
```bash
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "robonomics-interface"
version = "1.0.0"
version = "1.0.1"
description = "Robonomics wrapper over https://github.com/polkascan/py-substrate-interface created to facilitate programming with Robonomics"
authors = ["Pavel Tarasov <p040399@outlook.com>"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion robonomicsinterface/classes/service_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def extrinsic(
@check_socket_opened
def rpc_request(
self, method: str, params: tp.Optional[tp.List[str]], result_handler: tp.Optional[tp.Callable]
) -> tp.Dict[tp.Any]:
) -> tp.Dict[str, tp.Any]:
"""
Method that handles the actual RPC request to the Substrate node. The other implemented functions eventually
use this method to perform the request.
Expand Down

0 comments on commit dc4780e

Please sign in to comment.