Skip to content

Commit

Permalink
Fix error in roles calls
Browse files Browse the repository at this point in the history
  • Loading branch information
tjarrettveracode committed Oct 9, 2024
1 parent e1fc5b3 commit 96a38af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion veracode_api_py/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ def revoke_creds(self, api_id):
def get_roles(self):
return Roles().get_all()

def get_role(self, role_guid: GUID):
def get_role(self, role_guid: UUID):
return Roles().get(role_guid=role_guid)

def create_role(self, role_name, role_description, is_api=False, jit_assignable=True,
Expand Down

0 comments on commit 96a38af

Please sign in to comment.