7 lines
182 B
Python
7 lines
182 B
Python
|
"""The iCloudPy library."""
|
||
|
import logging
|
||
|
|
||
|
from icloudpy.base import ICloudPyService # pylint: disable=unused-import
|
||
|
|
||
|
logging.getLogger(__name__).addHandler(logging.NullHandler())
|