mirror of
https://github.com/EDCD/EDDN.git
synced 2025-04-22 11:30:29 +03:00
requirements: strict_rfc3339 was unused
This commit is contained in:
parent
693ad95fb3
commit
6ca78a51df
@ -7,5 +7,4 @@ jsonschema==4.2.0
|
||||
pyzmq==22.3.0
|
||||
requests==2.25.1
|
||||
simplejson==3.16.0
|
||||
strict_rfc3339==0.7
|
||||
mysql-connector-python==8.0.27
|
||||
|
1
setup.py
1
setup.py
@ -98,7 +98,6 @@ setup(
|
||||
"gevent==1.3.7",
|
||||
"jsonschema==2.6.0",
|
||||
"pyzmq==17.1.2",
|
||||
"strict_rfc3339==0.7",
|
||||
"simplejson==3.16.0",
|
||||
"mysql-connector-python==8.0.17"
|
||||
],
|
||||
|
@ -1,9 +1,11 @@
|
||||
# coding: utf8
|
||||
"""Handle validating incoming messages against the schemas."""
|
||||
|
||||
from enum import IntEnum
|
||||
|
||||
import simplejson
|
||||
import strict_rfc3339
|
||||
from enum import IntEnum
|
||||
from jsonschema import validate as jsValidate, ValidationError, FormatChecker
|
||||
from jsonschema import FormatChecker, ValidationError
|
||||
from jsonschema import validate as jsValidate
|
||||
|
||||
|
||||
class Validator(object):
|
||||
|
Loading…
x
Reference in New Issue
Block a user