From 921dc85e9a9accdb18fb47586d250fe615d832b9 Mon Sep 17 00:00:00 2001
From: florian <f.spreckelsen@inidscale.com>
Date: Tue, 2 Nov 2021 16:18:45 +0100
Subject: [PATCH] STY: autopep'd

---
 integrationtests/insert_model.py | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/integrationtests/insert_model.py b/integrationtests/insert_model.py
index 3cff966d..26bf478c 100755
--- a/integrationtests/insert_model.py
+++ b/integrationtests/insert_model.py
@@ -8,7 +8,7 @@ from caosadvancedtools.models.parser import parse_model_from_yaml
 
 def main():
 
-    # for teseting existing data model parts for the YANL Interface
+    # for testing existing data model parts with the YAML Interface
     db.RecordType(name="TestRT1", datatype=db.TEXT).insert()
     db.Property(name="TestP1", datatype=db.TEXT).insert()
 
@@ -21,7 +21,8 @@ def main():
         al.insert()
 
     h5model = db.Container()
-    h5file = h5py.File('extroot/ExperimentalData/2010_TestProject/2019-02-03/hdf5_dummy_file.hdf5', 'r')
+    h5file = h5py.File(
+        'extroot/ExperimentalData/2010_TestProject/2019-02-03/hdf5_dummy_file.hdf5', 'r')
     H5CFood.create_structure(h5file, create_recordTypes=True, collection=h5model,
                              root_name="ExampleH5")
     h5model = DataModel(h5model)
-- 
GitLab