Add pylintrc, fix pylint issue.

Test: pylint update.py
Bug: None
Change-Id: I16083e2d4871e0bd6b94daa9e5301016f2af74b9
diff --git a/pylintrc b/pylintrc
new file mode 100644
index 0000000..0ce2669
--- /dev/null
+++ b/pylintrc
@@ -0,0 +1,11 @@
+[MESSAGES CONTROL]
+disable=missing-docstring,fixme,locally-disabled
+
+
+[BASIC]
+# Good variable names which should always be accepted, separated by a comma
+good-names=i,j,k,ex,Run,_
+
+
+[FORMAT]
+max-line-length=79
diff --git a/update.py b/update.py
index b655ca7..9627904 100755
--- a/update.py
+++ b/update.py
@@ -91,7 +91,6 @@
 
     first_api = 9
     first_lp64_api = 21
-    latest_api = 23
 
     for api in xrange(first_api, first_lp64_api):
         if not os.path.exists(api_str(api)):