Skip to content

Commit

Permalink
fix: reorganize imports and remove pytz
Browse files Browse the repository at this point in the history
- reorganize imports and remove pytz from KVOverrideEntry.py
  • Loading branch information
leafspark committed Sep 5, 2024
1 parent 8c333b0 commit f8651ef
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions src/KVOverrideEntry.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
import locale
import os
import platform
import shutil
import socket
import time
from datetime import datetime

import psutil
from PySide6.QtWidgets import QWidget, QHBoxLayout, QLineEdit, QComboBox, QPushButton
from PySide6.QtCore import Signal, QRegularExpression
from PySide6.QtCore import QRegularExpression, Signal
from PySide6.QtGui import QDoubleValidator, QIntValidator, QRegularExpressionValidator
from datetime import datetime
import pytz
import time
import os
import socket
import platform
from PySide6.QtWidgets import QComboBox, QHBoxLayout, QLineEdit, QPushButton, QWidget


class KVOverrideEntry(QWidget):
Expand Down

0 comments on commit f8651ef

Please sign in to comment.