gnu: python-bandit: Fix indentation.
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>
Wed, 18 Nov 2020 21:41:51 +0000 (16:41 -0500)
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>
Fri, 20 Nov 2020 02:56:58 +0000 (21:56 -0500)
* gnu/packages/openstack.scm (python-bandit): Fix indentation.

gnu/packages/openstack.scm

index 1c1fe66..57f1937 100644 (file)
      ;; python-stestr.
      `(#:tests? #f))
     (propagated-inputs
-      `(("python-gitpython" ,python-gitpython)
-        ("python-pyyaml" ,python-pyyaml)
-        ("python-six" ,python-six)
-        ("python-stevedore" ,python-stevedore)))
+     `(("python-gitpython" ,python-gitpython)
+       ("python-pyyaml" ,python-pyyaml)
+       ("python-six" ,python-six)
+       ("python-stevedore" ,python-stevedore)))
     (native-inputs
-      `(("python-pbr" ,python-pbr)))
+     `(("python-pbr" ,python-pbr)))
     (home-page "https://github.com/PyCQA/bandit")
     (synopsis "Security oriented static analyser for python code")
-    (description
-      "Bandit is a tool designed to find common security issues in Python code.
-To do this Bandit processes each file, builds an AST from it, and runs
-appropriate plugins against the AST nodes.  Once Bandit has finished scanning
-all the files it generates a report.")
+    (description "Bandit is a tool designed to find common security issues in
+Python code.  To do this Bandit processes each file, builds an AST from it,
+and runs appropriate plugins against the AST nodes.  Once Bandit has finished
+scanning all the files it generates a report.")
     (license asl2.0)))
 
 (define-public python-debtcollector