From b76b84423502e48eea02dbc4015ebe60cfffea44 Mon Sep 17 00:00:00 2001 From: kenlhlui Date: Fri, 30 Aug 2024 10:07:54 -0400 Subject: [PATCH] 1. Added ORCID_fixer clas in fixer.py --- src/pyorcid_checksum/fixer.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/pyorcid_checksum/fixer.py b/src/pyorcid_checksum/fixer.py index a5cfe70..cebc63d 100644 --- a/src/pyorcid_checksum/fixer.py +++ b/src/pyorcid_checksum/fixer.py @@ -1,3 +1,7 @@ """Fix the ORCID/ORCID ID if the checksum result is incorrect""" -import re \ No newline at end of file +import re + +class ORCID_fixer: + def __init__(self) -> None: + pass \ No newline at end of file