Skip to content

Commit

Permalink
Fix typo in var name
Browse files Browse the repository at this point in the history
  • Loading branch information
jordimas committed Nov 29, 2024
1 parent a600d96 commit ae70a85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/builder/licenses.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@


class Licenses:
PROPIETARY = "propietària"
PROPRIETARY = "propietària"

def __init__(self, filename="../licenses/licenses.json"):
self.filename = filename
Expand All @@ -39,7 +39,7 @@ def get_licenses_ids(self):
for license in licenses:
licenses_ids.add(license["licenseId"])

licenses_ids.add(self.PROPIETARY)
licenses_ids.add(self.PROPRIETARY)
return licenses_ids

def get_licenses_name_and_link(self):
Expand Down

0 comments on commit ae70a85

Please sign in to comment.