Silence a pylint warning.

Without this, `gcl commit` doesn't work without --no_presubmit.

Also set `svn:eol-style LF` on this file.
Review URL: https://codereview.chromium.org/121303002/


git-svn-id: http://gyp.googlecode.com/svn/trunk@1828 78cadc50-ecff-11dd-a971-7dbc132099af
diff --git a/pylib/gyp/ordered_dict.py b/pylib/gyp/ordered_dict.py
index a3609ad..a1e89f9 100644
--- a/pylib/gyp/ordered_dict.py
+++ b/pylib/gyp/ordered_dict.py
@@ -166,6 +166,8 @@
         for k in self:
             yield (k, self[k])
 
+    # Suppress 'OrderedDict.update: Method has no argument':
+    # pylint: disable=E0211
     def update(*args, **kwds):
         '''od.update(E, **F) -> None.  Update od from dict/iterable E and F.