mirror of
https://github.com/ProtoThis/python-synology.git
synced 2026-01-19 09:28:42 +00:00
* Restore standard ignore list for flake8 In previous version we add some checks to ignore list. * Fix all B950 flake8 errors (line too long) Fix the code and add 2 per-file-ignore paterns for readability reasons. * Fix F401 flake8 errors (import not used) * Fix E302 flake8 errors * Fix E266 flake8 errors * Fix D107 flake8 errors * Fix Dxxx Flake8 errors * Add explanation on flake8 ignored rules * Remove pyling inline ignore rules pylint is no more used and replaced by flake8. * Remove D102 flake8 errors. * Apply suggestions from code review Co-authored-by: Quentame <polletquentin74@me.com> Co-authored-by: Quentame <polletquentin74@me.com>
23 lines
754 B
Python
23 lines
754 B
Python
"""DSM 5 datas."""
|
|
from .const_5_api_auth import DSM_5_AUTH_LOGIN
|
|
from .const_5_api_auth import DSM_5_AUTH_LOGIN_2SA
|
|
from .const_5_api_auth import DSM_5_AUTH_LOGIN_2SA_OTP
|
|
from .const_5_api_info import DSM_5_API_INFO
|
|
from .core.const_5_core_utilization import DSM_5_CORE_UTILIZATION
|
|
from .dsm.const_5_dsm_info import DSM_5_DSM_INFORMATION
|
|
from .dsm.const_5_dsm_network import DSM_5_DSM_NETWORK
|
|
from .storage.const_5_storage_storage import (
|
|
DSM_5_STORAGE_STORAGE_DS410J_RAID5_4DISKS_1VOL,
|
|
)
|
|
|
|
__all__ = [
|
|
"DSM_5_AUTH_LOGIN",
|
|
"DSM_5_AUTH_LOGIN_2SA",
|
|
"DSM_5_AUTH_LOGIN_2SA_OTP",
|
|
"DSM_5_API_INFO",
|
|
"DSM_5_CORE_UTILIZATION",
|
|
"DSM_5_DSM_INFORMATION",
|
|
"DSM_5_DSM_NETWORK",
|
|
"DSM_5_STORAGE_STORAGE_DS410J_RAID5_4DISKS_1VOL",
|
|
]
|