aboutsummaryrefslogtreecommitdiffstats
path: root/cloud_mdir_sync/__init__.py
blob: 838299922852996fedb755039765605ace1d7f27 (plain)
1
2
3
4
5
6
# SPDX-License-Identifier: GPL-2.0+
import asyncio

# Python 3.6 compatibility
if "create_task" not in dir(asyncio):
    asyncio.create_task = asyncio.ensure_future