Skip to content

Commit

Permalink
better naming
Browse files Browse the repository at this point in the history
  • Loading branch information
jensens committed Dec 10, 2024
1 parent 29d1661 commit def0f50
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Unit Tests
name: Tests

on:
- push
Expand Down
4 changes: 2 additions & 2 deletions src/edutap/wallet_google/handlers/validate.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
from ..settings import GoogleWalletSettings


def _raw_private_key(inkey: str) -> str:
def _raw_private_key(in_key: str) -> str:
"""
Returns the raw private key.
"""
result = ""
for line in inkey.splitlines():
for line in in_key.splitlines():
if "BEGIN PRIVATE KEY" in line:
continue
if "END PRIVATE KEY" in line:
Expand Down

0 comments on commit def0f50

Please sign in to comment.