diff options
author | jwansek <eddie.atten.ea29@gmail.com> | 2022-04-27 18:31:52 +0100 |
---|---|---|
committer | jwansek <eddie.atten.ea29@gmail.com> | 2022-04-27 18:31:52 +0100 |
commit | 2c891af807fd46b72a539ee99040dee18b3cd6e3 (patch) | |
tree | b10c83596e8d157d8e7cbdfd57797d2b4bd15505 /ExampleSubmission | |
parent | 24dbd9f360be1a533bb33e2506a88fd9af85eac2 (diff) | |
download | Smarker-2c891af807fd46b72a539ee99040dee18b3cd6e3.tar.gz Smarker-2c891af807fd46b72a539ee99040dee18b3cd6e3.zip |
Added some sql stuff, fixed bugs with pdf rendering
Diffstat (limited to 'ExampleSubmission')
-rw-r--r-- | ExampleSubmission/example.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ExampleSubmission/example.py b/ExampleSubmission/example.py index 07f21d4..d6f7015 100644 --- a/ExampleSubmission/example.py +++ b/ExampleSubmission/example.py @@ -1,11 +1,11 @@ # Eden Attenborough
# 12-01-21
-import tkinter as tk
+#import tkinter as tk
from dataclasses import dataclass
import sys
-class Application(tk.Tk):
+class Application:
"""An example class, which implements a GUI by inheriting from tkinter.Tk
"""
def __init__(self, *args, **kwargs):
|