Skip to content

Commit 468082e

Browse files
committed
Fix import issues
1 parent e2afbfb commit 468082e

2 files changed

Lines changed: 17 additions & 0 deletions

File tree

adapter/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# -*- coding: utf-8 -*-
2+
3+
from adapter import * # noqa

adapter/adapter.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# -*- coding: utf-8 -*-
2+
3+
from __future__ import unicode_literals
4+
5+
6+
__all__ = ['Adapter', 'CharField']
7+
8+
9+
class CharField(object):
10+
pass
11+
12+
13+
class Adapter(object):
14+
pass

0 commit comments

Comments
 (0)