mirror of
https://github.com/peeringdb/peeringdb.git
synced 2024-05-11 05:55:09 +00:00
Prep 2.29 (#1024)
* django3, py39, lgtm, linting (#715) * IX-F Importer: ticket status change when posting re-occuring conflict to existing resolved ticket (#920) * fix recaptcha requirement for user creation in django-admin (#715) * IX-F Importer: fix command output buffering #967 * Drop dot1q_support field #903 * fix test (#967) * Add name, city, country to ixfac (GET operation) #166 * additional tests fir #166 * Allow IXP to trigger ix-f importer for their exchange #779 * add docker compose for dev * add selinux labels for mountpoints * fixes #1013: The process to permanently remove old soft-deleted network contacts pdb_delete_pocs raises a false ProtectedAction * fix api test * relock poetry * remove django_namespace_perms from installed apps * fix user permissios ui * remove remaining references to django namespace perms * linting * copy tox.ini * comment flake8 check until we figure out why it ignores configs from tox.ini * black format * poetry lock Co-authored-by: Stefan Pratter <stefan@20c.com>
This commit is contained in:
@@ -38,7 +38,7 @@ def validate_phonenumber(phonenumber, country=None):
|
||||
parsed_number, phonenumbers.PhoneNumberFormat.E164
|
||||
)
|
||||
return f"{validated_number}"
|
||||
except phonenumbers.phonenumberutil.NumberParseException as exc:
|
||||
except phonenumbers.phonenumberutil.NumberParseException:
|
||||
raise ValidationError(_("Not a valid phone number (E.164)"))
|
||||
|
||||
|
||||
@@ -83,7 +83,7 @@ def validate_prefix(prefix):
|
||||
if isinstance(prefix, str):
|
||||
try:
|
||||
prefix = ipaddress.ip_network(prefix)
|
||||
except ValueError as exc:
|
||||
except ValueError:
|
||||
raise ValidationError(_("Invalid prefix: {}").format(prefix))
|
||||
return prefix
|
||||
|
||||
@@ -267,7 +267,6 @@ def validate_irr_as_set(value):
|
||||
)
|
||||
|
||||
set_found = False
|
||||
typ = None
|
||||
types = []
|
||||
|
||||
for part in as_parts:
|
||||
|
Reference in New Issue
Block a user