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
@@ -4117,6 +4116,7 @@ def write(
4117
4116
data_columns = None ,
4118
4117
track_times = True ,
4119
4118
):
4119
+ from tables import __version__ as tables_version
4120
4120
4121
4121
if not append and self .is_exists :
4122
4122
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