From 611b0a17c5086fdef3b14cffbcc232b9975f6e76 Mon Sep 17 00:00:00 2001 From: Yago amaral <75191216+YagoAamaral@users.noreply.github.com> Date: Wed, 11 Sep 2024 10:06:55 -0300 Subject: [PATCH] Update Critoniano.py --- Critoniano.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Critoniano.py b/Critoniano.py index cf95ae9..412b5d4 100644 --- a/Critoniano.py +++ b/Critoniano.py @@ -2,7 +2,7 @@ import subprocess import random import sqlite3 -from pynotifier import Notification +from pynotifier import notification from PySide6 import QtCore, QtWidgets, QtGui from PySide6.QtCore import QPropertyAnimation @@ -29,10 +29,10 @@ def __init__(self, nome): # Aceitar o nome como parâmetro self.notify_button.clicked.connect(lambda: self.show_notification(nome)) def show_notification(self, nome): - Notification( + notification( title='Cadastro realizado', description=f'O nome {nome} foi salvo com sucesso!', - icon_path='', # Se houver um ícone, especifique o caminho aqui + icon_path='', duration=10 # Duração da notificação em segundos ).send() @@ -141,7 +141,7 @@ def contui(self): @QtCore.Slot() def save_name(self): - nome = self.input.text().strip() # Remover espaços em branco + nome = self.input.text().strip() try: if nome: self.cursor.execute("INSERT INTO nomes (nome) VALUES (?)", (nome,))