Tools: Apply pre-commit autoformatting

This commit is contained in:
Chris Hennes
2023-04-22 12:53:49 -05:00
parent 74561536af
commit 4a7e1b6d9b
105 changed files with 6814 additions and 5407 deletions

View File

@@ -4,15 +4,15 @@
Usage = """examplePy2wiki - generating a wiki text out of a python example
Usage:
examplePy2wiki [Optionen]
examplePy2wiki [Optionen]
Options:
-o --out-file=FILENAME use this file name for output, default resources.qrc
-i, --in-file=FILENAME directory to search, default PWD
-h, --help print this help message
This program reads python files and generate a output suited for a Mediawiki page.
The python comments get translated to text and the code blocks get intended to
The python comments get translated to text and the code blocks get intended to
show up us code in the wiki.
@@ -25,20 +25,22 @@ Version:
0.1
"""
import os,sys,string,getopt
import os, sys, string, getopt
def Process(line):
if(line[0:2]=='# '):
if line[0:2] == "# ":
return line[2:]
else:
return ' '+line
return " " + line
def main():
try:
opts, args = getopt.getopt(sys.argv[1:], "hi:o:", ["help", "verbose", "in-file=","out-file="])
opts, args = getopt.getopt(
sys.argv[1:], "hi:o:", ["help", "verbose", "in-file=", "out-file="]
)
except getopt.GetoptError:
# print help information and exit:
sys.stderr.write(Usage)
@@ -50,15 +52,15 @@ def main():
sys.stderr.write(Usage)
sys.exit()
if o in ("-o", "--out-file"):
outfile = open(a,'w')
outfile = open(a, "w")
if o in ("-i", "--in-file"):
infile = open(a,'r')
infile = open(a, "r")
lines = infile.readlines()
for l in lines:
outfile.write(Process(l))
#print l
# print l
if __name__ == "__main__":
main()