Skip to content

Commit

Permalink
Remove a
Browse files Browse the repository at this point in the history
  • Loading branch information
Thoralf-M committed Oct 6, 2023
1 parent 97860ff commit 64349ee
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion bindings/python/iota_sdk/types/address.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def deserialize_address(d: Dict[str, Any]) -> Address:
def deserialize_addresses(
dicts: List[Dict[str, Any]]) -> List[Address]:
"""
Takes a list of dictionaries as input and returns a list with specific instances of a classes based on the value of the 'type' key in the dictionary.
Takes a list of dictionaries as input and returns a list with specific instances of classes based on the value of the 'type' key in the dictionary.
Arguments:
* `dicts`: A list of dictionaries that are expected to have a key called 'type' which specifies the type of the returned value.
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/iota_sdk/types/block_issuer_key.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def deserialize_block_issuer_key(d: Dict[str, Any]) -> BlockIssuerKey:
def deserialize_block_issuer_keys(
dicts: List[Dict[str, Any]]) -> List[BlockIssuerKey]:
"""
Takes a list of dictionaries as input and returns a list with specific instances of a classes based on the value of the 'type' key in the dictionary.
Takes a list of dictionaries as input and returns a list with specific instances of classes based on the value of the 'type' key in the dictionary.
Arguments:
* `dicts`: A list of dictionaries that are expected to have a key called 'type' which specifies the type of the returned value.
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/iota_sdk/types/context_input.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def deserialize_context_input(d: Dict[str, Any]) -> ContextInput:
def deserialize_context_inputs(
dicts: List[Dict[str, Any]]) -> List[ContextInput]:
"""
Takes a list of dictionaries as input and returns a list with specific instances of a classes based on the value of the 'type' key in the dictionary.
Takes a list of dictionaries as input and returns a list with specific instances of classes based on the value of the 'type' key in the dictionary.
Arguments:
* `dicts`: A list of dictionaries that are expected to have a key called 'type' which specifies the type of the returned value.
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/iota_sdk/types/feature.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def deserialize_feature(d: Dict[str, Any]) -> Feature:

def deserialize_features(dicts: List[Dict[str, Any]]) -> List[Feature]:
"""
Takes a list of dictionaries as input and returns a list with specific instances of a classes based on the value of the 'type' key in the dictionary.
Takes a list of dictionaries as input and returns a list with specific instances of classes based on the value of the 'type' key in the dictionary.
Arguments:
* `dicts`: A list of dictionaries that are expected to have a key called 'type' which specifies the type of the returned value.
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/iota_sdk/types/output.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ def deserialize_output(d: Dict[str, Any]) -> Output:

def deserialize_outputs(dicts: List[Dict[str, Any]]) -> List[Output]:
"""
Takes a list of dictionaries as input and returns a list with specific instances of a classes based on the value of the 'type' key in the dictionary.
Takes a list of dictionaries as input and returns a list with specific instances of classes based on the value of the 'type' key in the dictionary.
Arguments:
* `dicts`: A list of dictionaries that are expected to have a key called 'type' which specifies the type of the returned value.
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/iota_sdk/types/payload.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def deserialize_payload(d: Dict[str, Any]) -> Payload:
def deserialize_payloads(
dicts: List[Dict[str, Any]]) -> List[Payload]:
"""
Takes a list of dictionaries as input and returns a list with specific instances of a classes based on the value of the 'type' key in the dictionary.
Takes a list of dictionaries as input and returns a list with specific instances of classes based on the value of the 'type' key in the dictionary.
Arguments:
* `dicts`: A list of dictionaries that are expected to have a key called 'type' which specifies the type of the returned value.
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/iota_sdk/types/unlock.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def deserialize_unlock(d: Dict[str, Any]) -> Union[SignatureUnlock,
def deserialize_unlocks(dicts: List[Dict[str, Any]]) -> List[Union[SignatureUnlock,
ReferenceUnlock, AccountUnlock, NftUnlock]]:
"""
Takes a list of dictionaries as input and returns a list with specific instances of a classes based on the value of the 'type' key in the dictionary.
Takes a list of dictionaries as input and returns a list with specific instances of classes based on the value of the 'type' key in the dictionary.
Arguments:
* `dicts`: A list of dictionaries that are expected to have a key called 'type' which specifies the type of the returned value.
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/iota_sdk/types/unlock_condition.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ def deserialize_unlock_condition(d: Dict[str, Any]) -> UnlockCondition:
def deserialize_unlock_conditions(
dicts: List[Dict[str, Any]]) -> List[UnlockCondition]:
"""
Takes a list of dictionaries as input and returns a list with specific instances of a classes based on the value of the 'type' key in the dictionary.
Takes a list of dictionaries as input and returns a list with specific instances of classes based on the value of the 'type' key in the dictionary.
Arguments:
* `dicts`: A list of dictionaries that are expected to have a key called 'type' which specifies the type of the returned value.
Expand Down

0 comments on commit 64349ee

Please sign in to comment.