diff --git a/PythonAPI/Importing/install.py b/PythonAPI/Importing/install.py index e7a8dff..95df6e9 100644 --- a/PythonAPI/Importing/install.py +++ b/PythonAPI/Importing/install.py @@ -47,7 +47,7 @@ def install(package_name,version=None,inequality=None): return False # Checking logical package constraints (if applicable) if inequality is not None: - if inequality is not in ['==','<','>','<=','>=']: + if inequality not in ['==','<','>','<=','>=']: print('inequality must be one of the following: == < > <= >=') return False if version is None: