Skip to content

Commit

Permalink
PR from branch users/alexdrydew/add_kw_only_to_doc
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdrydew committed Jul 15, 2021
1 parent 02ef78f commit 96760e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/client/actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ class Parameters(RuleAction.Parameters):


class SetSkill(RuleAction, spec_value=RuleType.SET_SKILL):
"""Set perfmer skill value
"""Set performer skill value
Attributes:
parameters.skill_id: ID of the skill to update.
Expand Down
2 changes: 1 addition & 1 deletion src/client/primitives/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def __getitem__(self, value: E):
return self.registered_classes[value]


def attribute(*args, required=False, origin=None, readonly=False, **kwargs):
def attribute(*args, required: bool = False, origin: Optional[str] = None, readonly: bool = False, **kwargs):
"""Proxy for attr.attrib(...). Adds several keywords.
Args:
Expand Down

0 comments on commit 96760e9

Please sign in to comment.