]> git.ipfire.org Git - thirdparty/libcgroup.git/commitdiff
samples/python/create_systemd_scope: Fix quote warnings
authorKamalesh Babulal <kamalesh.babulal@oracle.com>
Tue, 13 Aug 2024 06:31:14 +0000 (12:01 +0530)
committerTom Hromatka <tom.hromatka@oracle.com>
Tue, 20 Aug 2024 20:42:50 +0000 (14:42 -0600)
Fix multiple "Q000 Double quotes found but single quotes preferred"
warnings.

Signed-off-by: Kamalesh Babulal <kamalesh.babulal@oracle.com>
Signed-off-by: Tom Hromatka <tom.hromatka@oracle.com>
samples/python/create_systemd_scope.py

index e29e866bb80ba9ac15f52b5e855ea7c6ed20ad30..f25fe9d43197bd1ec99a259f01973da40f8e18f2 100755 (executable)
@@ -38,10 +38,10 @@ import time
 import sys
 import os
 
-TMP_CGNAME = "tmp"
-HIGH_CGNAME = "high-priority"
-MED_CGNAME = "medium-priority"
-LOW_CGNAME = "low-priority"
+TMP_CGNAME = 'tmp'
+HIGH_CGNAME = 'high-priority'
+MED_CGNAME = 'medium-priority'
+LOW_CGNAME = 'low-priority'
 
 
 def parse_args():