Skip to content

Commit

Permalink
Change return type to tuple
Browse files Browse the repository at this point in the history
  • Loading branch information
atharva-satpute committed Jun 11, 2024
1 parent 3d477b0 commit 19084a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/autoqasm/reserved_keywords.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
}


def is_reserved_keyword(name: str) -> bool:
def is_reserved_keyword(name: str) -> tuple[bool, str]:
"""
Method to check whether or not 'name' is a reserved keyword
Expand Down

0 comments on commit 19084a9

Please sign in to comment.