From: Kamalesh Babulal Date: Tue, 13 Aug 2024 06:31:14 +0000 (+0530) Subject: samples/python/create_systemd_scope: Fix quote warnings X-Git-Tag: v3.2.0~50 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4156d5d00ac3362a24a58bd221137c5283bf9565;p=thirdparty%2Flibcgroup.git samples/python/create_systemd_scope: Fix quote warnings Fix multiple "Q000 Double quotes found but single quotes preferred" warnings. Signed-off-by: Kamalesh Babulal Signed-off-by: Tom Hromatka --- diff --git a/samples/python/create_systemd_scope.py b/samples/python/create_systemd_scope.py index e29e866b..f25fe9d4 100755 --- a/samples/python/create_systemd_scope.py +++ b/samples/python/create_systemd_scope.py @@ -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():