Skip to content

Commit c47e7ec

Browse files
committed
update
1 parent b3f1367 commit c47e7ec

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

pyhbasecli/HBase.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import json
1818
import binascii
1919
import datetime
20-
from typing import Callable, Dict, List, Mapping, Sequence, Optional, Any, List, Dict, Tuple, Union, Tuple, TypeVar
20+
from typing import Callable, Dict, List, Mapping, Sequence, Optional, Any, List, Dict, Tuple, Union, Tuple
2121
from thrift.protocol import TBinaryProtocol
2222
from thrift.transport import THttpClient
2323

pyhbasecli/__init__.py

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1-
from .HBase import newTColumnValue, ColumnsValue, HBaseCli, StrEncoder, StrDecoder, JsonEncoder, JsonDecoder
2-
3-
__all__ = ["newTColumnValue", "ColumnsValue", "HBaseCli", "StrEncoder", "StrDecoder", "JsonEncoder", "JsonDecoder"]
1+
from .HBase import (
2+
newTColumnValue,
3+
ColumnsValue,
4+
HBaseCli,
5+
StrEncoder,
6+
StrDecoder,
7+
JsonEncoder,
8+
JsonDecoder,
9+
NumberDecoder
10+
)
11+
__all__ = ["newTColumnValue", "ColumnsValue", "HBaseCli", "StrEncoder", "StrDecoder", "JsonEncoder", "JsonDecoder", "NumberDecoder"]

0 commit comments

Comments
 (0)