Skip to content

Commit

Permalink
update function name to Secret.update
Browse files Browse the repository at this point in the history
  • Loading branch information
treeben77 committed Jan 12, 2025
1 parent 0033874 commit 6d42244
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rblxopencloud/experience.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def __init__(self, data, experience) -> None:
def __repr__(self) -> str:
return f'<rblxopencloud.Secret id="{self.id}" domain="{self.domain}">'

def update_secret(
def update(
self,
id: str,
secret: Union[str, bytes],
Expand Down
2 changes: 1 addition & 1 deletion rblxopencloudasync/experience.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def __init__(self, data, experience) -> None:
def __repr__(self) -> str:
return f'<rblxopencloud.Secret id="{self.id}" domain="{self.domain}">'

async def update_secret(
async def update(
self,
id: str,
secret: Union[str, bytes],
Expand Down

0 comments on commit 6d42244

Please sign in to comment.