Linting code

This commit is contained in:
jeffser
2024-08-04 21:20:47 -06:00
parent dd95e3df7e
commit 6ba3719031
6 changed files with 32 additions and 15 deletions

View File

@@ -1,5 +1,10 @@
# local_instance.py
import subprocess, os, threading
"""
Handles running, stopping and resetting the integrated Ollama instance
"""
import subprocess
import os
import threading
from time import sleep
from logging import getLogger
from .internal import data_dir, cache_dir
@@ -39,4 +44,3 @@ def reset():
stop()
sleep(1)
start()