Split utils.py

This commit is contained in:
DiG 2022-01-17 19:09:09 +01:00
parent f25543c391
commit 58f71787ed
2 changed files with 5 additions and 6 deletions

View File

@ -6,11 +6,10 @@
from __future__ import print_function
import os
import sys
import json
import odoorpc # pip install odoorpc
#from typing import Iterable # > py38
from collections import Iterable # < py38
# from collections import Iterable # < py38
from utils import *
from renderers import render, tsv

View File

@ -1,10 +1,7 @@
from __future__ import print_function
import os
# import sys
import sys
import json
# import odoorpc # pip install odoorpc
# #from typing import Iterable # > py38
# from collections import Iterable # < py38
@ -12,6 +9,9 @@ def eprint(*args, **kwargs):
print(*args, file=sys.stderr, **kwargs)
# #from typing import Iterable # > py38
# from collections import Iterable # < py38
# def flatten(items):
# """Yield items from any nested iterable; see Reference."""
# for x in items: