Skip to content

Commit

Permalink
Merge pull request #194 from pittcsc/mypy-lab
Browse files Browse the repository at this point in the history
Fix `mypy` errors in `lab.py`
  • Loading branch information
tianyizheng02 authored Aug 25, 2024
2 parents 8ba515b + 4b7a44f commit 58a08c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pittapi/lab.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class Lab(NamedTuple):
class LabAPIError(Exception):
"""Raised when an error occurs while accessing the Lab API."""

def __init__(self, message):
def __init__(self, message: str):
super().__init__(message)


Expand Down

0 comments on commit 58a08c6

Please sign in to comment.