Skip to content

Commit b605621

Browse files
committed
fix pycodestyle issues
1 parent 8e0579c commit b605621

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

chc/cmdline/c_file/cfileutil.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@
7979
from chc.proof.CFunctionPO import CFunctionPO
8080

8181

82-
8382
def print_error(m: str) -> None:
8483
sys.stderr.write(("*" * 80) + "\n")
8584
sys.stderr.write(m + "\n")

chc/cmdline/chkc

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1472,9 +1472,12 @@ def parse() -> argparse.Namespace:
14721472
choices=["a", "w"],
14731473
default="a",
14741474
help="file mode for log file: append (a, default), or write (w)")
1475-
cprojectanalyze.add_argument("-x", "--exclude", action='append',
1476-
help="Exclude file from analysis. To exclude multiple files, use "
1477-
"this option for each file, e.g. -x dir1/f1.c, -x dir2/f2.c")
1475+
cprojectanalyze.add_argument(
1476+
"-x", "--exclude",
1477+
action="append",
1478+
help=(
1479+
"Exclude file from analysis. To exclude multiple files, use "
1480+
"this option for each file, e.g. -x dir1/f1.c, -x dir2/f2.c"))
14781481
cprojectanalyze.set_defaults(func=P.cproject_analyze_project)
14791482

14801483
# --- report

0 commit comments

Comments
 (0)