Skip to content

Commit

Permalink
Cross-python compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
smmaurer committed Nov 3, 2020
1 parent 62fbdd2 commit e013787
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion orca/orca.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,14 @@
import time
import warnings
from collections import namedtuple
from collections.abc import Callable
try:
from collections.abc import Callable
except ImportError: # Python 2.7
from collections import Callable
from contextlib import contextmanager
from functools import wraps


import pandas as pd
import tables
import tlz as tz
Expand Down

0 comments on commit e013787

Please sign in to comment.