Updated code to match new rules
[integration/test.git] / csit / libraries / HsfJson / hsf_json.py
index b3d5d9322a6fe6493fbcc1f6222a0f29dc66912b..d478ff0e295d8acd6dd029068e70996233730688 100644 (file)
@@ -5,11 +5,6 @@
 # terms of the Eclipse Public License v1.0 which accompanies this distribution,
 # and is available at http://www.eclipse.org/legal/epl-v10.html
 
-__author__ = "Vratko Polak"
-__copyright__ = "Copyright(c) 2015, Cisco Systems, Inc."
-__license__ = "Eclipse Public License v1.0"
-__email__ = "vrpolak@cisco.com"
-
 try:
     import simplejson as _json
 except ImportError:  # Python2.7 calls it json.
@@ -18,6 +13,12 @@ from hsfl import Hsfl as _Hsfl
 from hsfod import Hsfod as _Hsfod
 
 
+__author__ = "Vratko Polak"
+__copyright__ = "Copyright(c) 2015, Cisco Systems, Inc."
+__license__ = "Eclipse Public License v1.0"
+__email__ = "vrpolak@cisco.com"
+
+
 def _hsfl_array(s_and_end, scan_once, **kwargs):
     """Scan JSON array as usual, but return hsfl instead of list."""
     values, end = _json.decoder.JSONArray(s_and_end, scan_once, **kwargs)