From 70a24b12de2432e43440090c2fc3d8b38dbaa006 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ma=C3=ABl=20Madon?= <mael.madon@irit.fr>
Date: Thu, 3 Nov 2022 10:45:31 +0100
Subject: [PATCH] cosmetics

---
 swf_filter.py | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/swf_filter.py b/swf_filter.py
index 790b606..fbd043d 100755
--- a/swf_filter.py
+++ b/swf_filter.py
@@ -92,7 +92,7 @@ def main():
     """
     Program entry point.
 
-    Parses the input arguments then calls generate_flat_platform.
+    Parses the input arguments then calls filter_workload.
     """
     parser = argparse.ArgumentParser(
         description="Filter jobs from the SWF input according to some criteria "
@@ -105,12 +105,15 @@ def main():
                         help='The optional output SWF file')
     parser.add_argument('-sp', '--partitions_to_select',
                         type=int, nargs='+', default=None,
-                        help='List of partitions to only consider in the input trace. The jobs running in the other partitions will be discarded.')
+                        help="List of partitions to only consider in the input "
+                        "trace. The jobs running in the other partitions will "
+                        "be discarded.")
 
     parser.add_argument('--keep_only',
                         type=str,
                         default=None,
-                        help='If set, this parameter is evaluated to choose which jobs should be kept')
+                        help="If set, this parameter is evaluated to choose "
+                        "which jobs should be kept")
 
     parser.add_argument("-q", "--quiet", action="store_true")
 
-- 
GitLab