1
0
Fork 0

functions: Remove unused imports

This commit is contained in:
Pavol Žáčik 2025-04-01 11:10:16 +02:00
parent 87f0f99bb5
commit 422f14b0be
No known key found for this signature in database
GPG key ID: B3029C97EB97E3E4
18 changed files with 0 additions and 68 deletions

View file

@ -1,7 +1,5 @@
import os
import tuned.logs
from . import base
from tuned.utils.commands import commands
from tuned.profiles.exceptions import InvalidProfileException
log = tuned.logs.get()

View file

@ -1,7 +1,5 @@
import os
import tuned.logs
from . import base
from tuned.utils.commands import commands
from tuned.profiles.exceptions import InvalidProfileException
log = tuned.logs.get()

View file

@ -1,9 +1,6 @@
import re
import tuned.logs
from . import base
log = tuned.logs.get()
class CPUInfoCheck(base.Function):
"""
Checks regexes against the content of `/proc/cpuinfo`.

View file

@ -1,8 +1,5 @@
import tuned.logs
from . import base
log = tuned.logs.get()
class CPUList2Devs(base.Function):
"""
Converts a CPU list into a comma-separated list of device names.

View file

@ -1,9 +1,4 @@
import os
import tuned.logs
from . import base
from tuned.utils.commands import commands
log = tuned.logs.get()
class CPUList2Hex(base.Function):
"""

View file

@ -1,9 +1,4 @@
import os
import tuned.logs
from . import base
from tuned.utils.commands import commands
log = tuned.logs.get()
class CPUList2HexInvert(base.Function):
"""

View file

@ -1,9 +1,4 @@
import os
import tuned.logs
from . import base
from tuned.utils.commands import commands
log = tuned.logs.get()
class CPUListInvert(base.Function):
"""

View file

@ -1,9 +1,4 @@
import os
import tuned.logs
from . import base
from tuned.utils.commands import commands
log = tuned.logs.get()
class CPUListOnline(base.Function):
"""

View file

@ -1,9 +1,4 @@
import os
import tuned.logs
from . import base
from tuned.utils.commands import commands
log = tuned.logs.get()
class CPUListPack(base.Function):
"""

View file

@ -1,9 +1,4 @@
import os
import tuned.logs
from . import base
from tuned.utils.commands import commands
log = tuned.logs.get()
class CPUListPresent(base.Function):
"""

View file

@ -1,9 +1,4 @@
import os
import tuned.logs
from . import base
from tuned.utils.commands import commands
log = tuned.logs.get()
class CPUListUnpack(base.Function):
"""

View file

@ -1,7 +1,4 @@
import os
import tuned.logs
from . import base
from tuned.utils.commands import commands
class Exec(base.Function):
"""

View file

@ -1,9 +1,4 @@
import os
import tuned.logs
from . import base
from tuned.utils.commands import commands
log = tuned.logs.get()
class Hex2CPUList(base.Function):
"""

View file

@ -1,7 +1,4 @@
import os
import tuned.logs
from . import base
from tuned.utils.commands import commands
class KB2S(base.Function):
"""

View file

@ -1,9 +1,6 @@
import re
import tuned.logs
from . import base
log = tuned.logs.get()
class LSCPUCheck(base.Function):
"""
Checks regexes against the output of `lscpu`.

View file

@ -1,7 +1,4 @@
import os
import tuned.logs
from . import base
from tuned.utils.commands import commands
class S2KB(base.Function):
"""

View file

@ -1,7 +1,4 @@
import os
import tuned.logs
from . import base
from tuned.utils.commands import commands
class Strip(base.Function):
"""

View file

@ -1,7 +1,4 @@
import os
import tuned.logs
from . import base
from tuned.utils.commands import commands
class VirtCheck(base.Function):
"""