From b8a9fadb26917a1145b9d86da12a318688fcf0d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Bidoul?= Date: Wed, 24 Nov 2021 23:34:03 +0100 Subject: [PATCH] Minor typing simplification --- src/runboat/github.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/runboat/github.py b/src/runboat/github.py index b34c3e6..e1e78ef 100644 --- a/src/runboat/github.py +++ b/src/runboat/github.py @@ -30,7 +30,6 @@ class CommitInfo(BaseModel): git_commit: str @validator("repo") - @classmethod def validate_repo(cls, v: str) -> str: return v.lower()