ofproto: Inline trivial functions.
[sliver-openvswitch.git] / tests / test-json.py
index bffb88a..d9f0bfe 100644 (file)
@@ -1,11 +1,11 @@
-# Copyright (c) 2009, 2010 Nicira Networks.
-# 
+# Copyright (c) 2009, 2010 Nicira, Inc.
+#
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.
 # You may obtain a copy of the License at:
-# 
+#
 #     http://www.apache.org/licenses/LICENSE-2.0
-# 
+#
 # Unless required by applicable law or agreed to in writing, software
 # distributed under the License is distributed on an "AS IS" BASIS,
 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -18,6 +18,7 @@ import sys
 
 import ovs.json
 
+
 def print_json(json):
     if type(json) in [str, unicode]:
         print "error: %s" % json
@@ -27,6 +28,7 @@ def print_json(json):
         sys.stdout.write("\n")
         return True
 
+
 def parse_multiple(stream):
     buf = stream.read(4096)
     ok = True
@@ -49,6 +51,7 @@ def parse_multiple(stream):
         ok = False
     return ok
 
+
 def main(argv):
     argv0 = argv[0]
 
@@ -88,5 +91,6 @@ def main(argv):
     if not ok:
         sys.exit(1)
 
+
 if __name__ == '__main__':
     main(sys.argv)