]> granicus.if.org Git - graphviz/commitdiff
fix a Python indentation issue
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 3 Jul 2021 02:11:54 +0000 (19:11 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Fri, 9 Jul 2021 04:46:51 +0000 (21:46 -0700)
4 spaces is standard for Python, but we set 2 spaces in our .pylintrc.

tclpkg/gv/examples/layout.py

index 6cec6bdae6129eb10891f1bc8bc05ddad1cc4ee3..c6db1c6c762bf588522a9631974ef8fb9013a6b1 100755 (executable)
@@ -24,4 +24,4 @@ def main():
 
 
 if __name__ == "__main__":
-    main()
+  main()