Skip to content

Commit 5423d61

Browse files
committed
Fixed variable that was accidentally made lowercase
1 parent 5cd0ff6 commit 5423d61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adabot/lib/circuitpython_library_validators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ def validate_repo_state(self, repo):
228228
# we need.
229229
response = github.get("/repos/" + repo["full_name"])
230230
if not response.ok:
231-
return [error_unable_pull_repo_details]
231+
return [ERROR_UNABLE_PULL_REPO_DETAILS]
232232
repo_fields = response.json()
233233

234234
errors = []

0 commit comments

Comments
 (0)