Skip to content

Commit

Permalink
limpieza
Browse files Browse the repository at this point in the history
  • Loading branch information
atelporetti committed Feb 9, 2021
1 parent 163cd20 commit cd177a6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
4 changes: 1 addition & 3 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import constantes
from ventana_inicio import Inicio


class Main(Tk):

def __init__(self):
Expand Down Expand Up @@ -42,11 +41,10 @@ def cambia_frame(self, frame_a_cambiar, master):
self._frame = nuevo_frame
self._frame.grid(row=0, column=0)


try:
if __name__ == "__main__":
root = Main()
root.cambia_frame(Inicio, root)
root.mainloop()
except:
traceback.print_exc()
traceback.print_exc()
5 changes: 2 additions & 3 deletions pantalla_juego.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
try:
from tkinter import Button, Frame, Label
from tkinter import Frame, Label
except:
from Tkinter import Button, Frame, Label
from ventana_inicio import Inicio
from Tkinter import Frame, Label
import constantes
from vivorita import VivoritaPantalla

Expand Down
1 change: 0 additions & 1 deletion ranking.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from tkinter.constants import ANCHOR
from ventana_inicio import Inicio
import pandas as pd
import constantes
Expand Down

0 comments on commit cd177a6

Please sign in to comment.