sync   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 4
dl 0
loc 10
rs 10
c 0
b 0
f 0
1
#!/usr/bin/env python3
2
# -*- coding: utf-8 -*-
3
from db_sync_tool import __main__
4
5
#
6
# Legacy feature to support old module structure
7
#
8
if __name__ == "__main__":
9
    __main__.main()
10