We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8963218 commit b54e20bCopy full SHA for b54e20b
ci/code_checks.sh
@@ -16,7 +16,7 @@
16
17
echo "inside $0"
18
[[ $LINT ]] || { echo "NOT Linting. To lint use: LINT=true $0 $1"; exit 0; }
19
-[[ -z "$1" || "$1" == "lint" || "$1" == "patterns" || "$1" == "doctests" ]] || { echo "Unkown command $1. Usage: $0 [lint|patterns|doctests]"; exit 9999; }
+[[ -z "$1" || "$1" == "lint" || "$1" == "patterns" || "$1" == "doctests" ]] || { echo "Unknown command $1. Usage: $0 [lint|patterns|doctests]"; exit 9999; }
20
21
source activate pandas
22
RET=0
pandas/core/indexes/range.py
@@ -1,7 +1,7 @@
1
import operator
2
+import warnings
3
from datetime import timedelta
4
from sys import getsizeof
-import warnings
5
6
import numpy as np
7
0 commit comments