Hackfut Security File Manager
Current Path:
/opt/alt/python37/lib/python3.7/site-packages/attr
opt
/
alt
/
python37
/
lib
/
python3.7
/
site-packages
/
attr
/
📁
..
📄
__init__.py
(1.13 KB)
📁
__pycache__
📄
_compat.py
(4.19 KB)
📄
_config.py
(514 B)
📄
_funcs.py
(7.71 KB)
📄
_make.py
(48.14 KB)
📄
converters.py
(531 B)
📄
exceptions.py
(1.08 KB)
📄
filters.py
(1.12 KB)
📄
validators.py
(4.84 KB)
Editing: _config.py
from __future__ import absolute_import, division, print_function __all__ = ["set_run_validators", "get_run_validators"] _run_validators = True def set_run_validators(run): """ Set whether or not validators are run. By default, they are run. """ if not isinstance(run, bool): raise TypeError("'run' must be bool.") global _run_validators _run_validators = run def get_run_validators(): """ Return whether or not validators are run. """ return _run_validators
Upload File
Create Folder