File tree 2 files changed +2
-5
lines changed
2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change 13
13
import warnings
14
14
15
15
import numpy as np
16
- from tables import __version__ as tables_version
17
16
18
17
from pandas ._config import config , get_option
19
18
@@ -4110,6 +4109,7 @@ def write(
4110
4109
data_columns = None ,
4111
4110
track_times = True ,
4112
4111
):
4112
+ from tables import __version__ as tables_version
4113
4113
4114
4114
if not append and self .is_exists :
4115
4115
self ._handle .remove_node (self .group , "table" )
Original file line number Diff line number Diff line change @@ -300,10 +300,7 @@ def test_keys(self, setup_path):
300
300
301
301
@pytest .mark .skipif (
302
302
LooseVersion (tables .__version__ ) < LooseVersion ("3.4.3" ),
303
- reason = (
304
- "Skipping pytables test when tables version is "
305
- "lower than 3.4.3"
306
- ),
303
+ reason = ("Skipping pytables test when tables version is lower than 3.4.3" ),
307
304
)
308
305
def test_no_track_times (self , setup_path ):
309
306
You can’t perform that action at this time.
0 commit comments