Skip to content

Commit

Permalink
Tworzenie instancji klasy używając przekazanej klasy (pozwala na dzie…
Browse files Browse the repository at this point in the history
…dziczenie)
  • Loading branch information
ivellios committed Dec 18, 2024
1 parent d676ae5 commit e1e3e1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/pullers.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit e1e3e1a

Please sign in to comment.