Skip to content

Commit

Permalink
Fix GenericRequest mypy typing error (#380)
Browse files Browse the repository at this point in the history
* Type individual args

* Update CHANGELOG
  • Loading branch information
JST5000 committed Apr 28, 2022
1 parent b7d6aaf commit 4e78156
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed
- Resolve `txnNotFound` error with `send_reliable_submission` when waiting for a submitted malformed transaction
- Small typing mistake in GenericRequest

## [1.5.0] - 2022-04-25
### Added
Expand Down
2 changes: 1 addition & 1 deletion xrpl/models/requests/generic_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class GenericRequest(Request):
:meta hide-value:
"""

def __init__(self: GenericRequest, **kwargs: Dict[str, Any]) -> None:
def __init__(self: GenericRequest, **kwargs: Any) -> None:
"""
Initializes a GenericRequest.
Expand Down

0 comments on commit 4e78156

Please sign in to comment.