Issue-2727 - fixing hard coded /tmp

pull/2892/head
dzekem christa 2020-10-25 13:29:52 +01:00 committed by Kris Gesling
parent a174c3c822
commit 32f666edd4
10 changed files with 19 additions and 0 deletions

View File

@ -14,6 +14,8 @@
#
import subprocess
import time
import os
import tempfile
import sys
import os
import tempfile

View File

@ -16,6 +16,7 @@ from signal import getsignal, signal, SIGKILL, SIGINT, SIGTERM, \
SIG_DFL, default_int_handler, SIG_IGN # signals
import os # Operating System functions
import tempfile
#

View File

@ -19,6 +19,9 @@ more skills that are installed on a device, the longer these interactions
take. This is especially true at boot time when MSM is instantiated
frequently. To improve performance, the MSM instance is cached.
"""
import os
import tempfile
from collections import namedtuple
from functools import lru_cache
from os import path, makedirs

View File

@ -14,6 +14,7 @@
#
"""Periodically run by skill manager to update skills and post the manifest."""
import os
import tempfile
import sys
from datetime import datetime
from time import time

View File

@ -14,6 +14,7 @@
#
from copy import deepcopy
import os
import tempfile
import random
import re
from abc import ABCMeta, abstractmethod

View File

@ -14,6 +14,7 @@
#
import argparse
import os
import tempfile
import pyaudio
from contextlib import contextmanager

View File

@ -14,6 +14,8 @@
#
import unittest
import unittest.mock as mock
import os
import tempfile
from shutil import rmtree
from threading import Thread

View File

@ -13,6 +13,7 @@
# limitations under the License.
#
import signal
import tempfile
import unittest
from shutil import rmtree

View File

@ -1,3 +1,7 @@
import os
import tempfile
from unittest import TestCase, mock
from test.util import Anything

View File

@ -1,3 +1,6 @@
import os
import tempfile
from threading import Event
from unittest import TestCase, mock