File: vacuum.py

package info (click to toggle)
python-miio 0.5.12-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,888 kB
  • sloc: python: 23,425; makefile: 9
file content (10 lines) | stat: -rw-r--r-- 310 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
"""This file is just for compat reasons and prints out a deprecated warning when
executed."""
import warnings

from .integrations.vacuum.roborock.vacuum import *  # noqa: F403,F401

warnings.warn(
    "miio.vacuum module has been renamed to miio.integrations.vacuum.roborock.vacuum",
    DeprecationWarning,
)