소스 검색

Fixed error

Alex Sidorov 1 년 전
부모
커밋
2edb43cc1c
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. 3 2
      PropuskWidgets/PLineEdit.py

+ 3 - 2
PropuskWidgets/PLineEdit.py

@@ -19,9 +19,10 @@ class PLineEdit(QLineEdit):
 
     def __create_id(self) -> None:
         self.setText(datetime.now().strftime("%Y%m%d%H%M%S"))
+    
         
-    def mousePressEvent(self) -> None:
+    def mousePressEvent(self, action) -> None:
         self.__create_id()
-    
+        
     def get_value(self) -> None:
         return int(self.text())