Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

change to fullargsspec #288

Merged
merged 7 commits into from
Oct 15, 2018
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/source/upload.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from __future__ import print_function
from builtins import input
from builtins import str

import sys
from builtins import input, str
from subprocess import call

from conf import release
Expand Down
7 changes: 6 additions & 1 deletion featuretools/primitives/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from inspect import getargspec, isclass
from inspect import isclass

import pandas as pd

Expand All @@ -7,6 +7,11 @@
import featuretools.primitives
from featuretools.utils import is_string

try:
kmax12 marked this conversation as resolved.
Show resolved Hide resolved
from inspect import getfullargspec as getargspec
except ImportError:
from inspect import getargspec


def apply_dual_op_from_feat(f, array_1, array_2=None):
left = f.left
Expand Down