Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .licenserc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ header:
content: |
Copyright [year] [owner]
See LICENSE file for licensing details.
pattern: |
Copyright \d{4} Canonical Ltd.
See LICENSE file for licensing details.
paths:
- '**'
paths-ignore:
Expand Down
3 changes: 2 additions & 1 deletion httprequest_lego_provider/api/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ def validate(self, value) -> None:
ValidationError: if the value is invalid.
"""
# Use the parent's handling of required fields, etc.
super().validate(value)
# Pylint falsely detects no super class method.
super().validate(value) # pylint: disable=no-member
if not is_fqdn_compliant(value):
raise ValidationError(
message="Please provide a valid FQDN", code="invalid", params={"value": value}
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Django==5.2.9
djangorestframework==3.16.1
djangorestframework-simplejwt==5.5.1
GitPython==3.1.45
GitPython==3.1.46
psycopg2-binary==2.9.11
tzdata==2025.2

Loading