From e1e3e1a7df537e64c3093b6af701f786242dcd86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Janusz=20=22Ivellios=22=20Kamie=C5=84ski?= Date: Wed, 18 Dec 2024 20:39:46 +0100 Subject: [PATCH] =?UTF-8?q?Tworzenie=20instancji=20klasy=20u=C5=BCywaj?= =?UTF-8?q?=C4=85c=20przekazanej=20klasy=20(pozwala=20na=20dziedziczenie)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/scripts/pullers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/pullers.py b/.github/scripts/pullers.py index da8296f..452402c 100644 --- a/.github/scripts/pullers.py +++ b/.github/scripts/pullers.py @@ -46,7 +46,7 @@ def name(self): def get_org_by_krs(cls, issue: Issue, krs: str) -> Self | None: # Downloading official org data try: - org = KRSDataPuller(krs) + org = cls(krs) except KRSMaintenanceError as e: issue.create_comment(str(e)) issue.add_to_labels(Label.INVALID_KRS)