Skip to content

Commit 383f007

Browse files
committedFeb 4, 2024
feat: run logging.basicConfig()
1 parent 369062f commit 383f007

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

‎main.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
#!/usr/bin/python3
22

3+
import logging
34
import sys
45

56
from PyQt5.QtWidgets import QApplication
67

78
from gui import MainWindow
89

910

11+
logging.basicConfig()
12+
13+
1014
if __name__ == "__main__":
1115
app = QApplication(sys.argv)
1216
window = MainWindow()

0 commit comments

Comments
 (0)
Please sign in to comment.