Skip to content

Commit 2ec22da

Browse files
committed
m
1 parent 222ea40 commit 2ec22da

File tree

9 files changed

+33
-34
lines changed

9 files changed

+33
-34
lines changed

src/spreadsheet/aa__init__.py

Lines changed: 0 additions & 34 deletions
This file was deleted.

src/util/spreadsheet/__init__.py

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,34 @@
1+
import logging
2+
3+
14
from .tokenizer import *
5+
from .o_spreadsheet import *
6+
7+
8+
_logger = logging.getLogger(__name__)
9+
10+
11+
from .fields import *
12+
from .models import *
13+
# try:
14+
# from .fields import *
15+
# from .models import *
16+
# except (ImportError, SyntaxError):
17+
# """spreadsheet utils are not compatible with Python 2.
18+
# But spreadsheet did not exist in version supporting
19+
# python 2. So there's nothing to do anyway.
20+
# """
21+
# _logger.debug("spreadsheet utils not imported")
22+
# breakpoint()
23+
24+
# def rename_field(*args, **kwargs):
25+
# pass
26+
27+
# def rename_model(*args, **kwargs):
28+
# pass
29+
30+
# def remove_field(*args, **kwargs):
31+
# pass
32+
33+
# def remove_model(*args, **kwargs):
34+
# pass

0 commit comments

Comments
 (0)