Skip to content

Commit 8583df4

Browse files
committed
Remove unused imports (pandas and xarray)
1 parent 6474ab5 commit 8583df4

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

traittypes/traittypes.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,6 @@ def __getattribute__(self, name):
1515
import numpy as np
1616
except ImportError:
1717
np = _DelayedImportError('numpy')
18-
try:
19-
import pandas as pd
20-
except ImportError:
21-
pd = _DelayedImportError('pandas')
22-
try:
23-
import xarray as xr
24-
except ImportError:
25-
xr = _DelayedImportError('xarray')
2618

2719

2820
Empty = Sentinel('Empty', 'traittypes',

0 commit comments

Comments
 (0)