mirror of https://github.com/leafspark/AutoGGUF
refactor: change filenames to follow PEP 8
This commit is contained in:
parent
516aec0a13
commit
d2c83efebb
|
@ -17,7 +17,7 @@
|
|||
show_about,
|
||||
ensure_directory,
|
||||
)
|
||||
from src.localizations import *
|
||||
from src.Localizations import *
|
||||
import src.ui_update
|
||||
import src.lora_conversion
|
||||
import src.utils
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
QComboBox,
|
||||
)
|
||||
|
||||
from src.localizations import (
|
||||
from src.Localizations import (
|
||||
GPU_USAGE_FORMAT,
|
||||
GPU_DETAILS,
|
||||
GPU_USAGE_OVER_TIME,
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
from PySide6.QtCore import *
|
||||
|
||||
from imports_and_globals import open_file_safe
|
||||
from localizations import *
|
||||
from Localizations import *
|
||||
|
||||
|
||||
class QuantizationThread(QThread):
|
||||
|
|
|
@ -1,6 +1,3 @@
|
|||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import logging
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
#!/usr/bin/env python3
|
||||
from __future__ import annotations
|
||||
|
||||
import logging
|
||||
|
|
|
@ -1,6 +1,3 @@
|
|||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from dataclasses import dataclass
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
from PySide6.QtWidgets import QMessageBox
|
||||
from src.localizations import *
|
||||
from src.Localizations import *
|
||||
|
||||
|
||||
def show_error(logger, message):
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
from PySide6.QtCore import QTimer, Signal, QThread, Qt, QSize
|
||||
from PySide6.QtGui import QCloseEvent, QAction
|
||||
|
||||
from src.localizations import *
|
||||
from src.Localizations import *
|
||||
|
||||
|
||||
def show_about(self):
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
from src.TaskListItem import TaskListItem
|
||||
from src.error_handling import handle_error, show_error
|
||||
from src.imports_and_globals import ensure_directory
|
||||
from src.localizations import *
|
||||
from src.Localizations import *
|
||||
|
||||
|
||||
def convert_lora(self):
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
from src.localizations import *
|
||||
from src.Localizations import *
|
||||
import psutil
|
||||
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
from PySide6.QtWidgets import QFileDialog
|
||||
|
||||
from error_handling import show_error
|
||||
from localizations import *
|
||||
from Localizations import *
|
||||
import requests
|
||||
|
||||
from src.DownloadThread import DownloadThread
|
||||
|
|
Loading…
Reference in New Issue