From c61cea7806644bee87248b83213203b0f48ed0ed Mon Sep 17 00:00:00 2001 From: Salvo 'LtWorf' Tomaselli Date: Sat, 15 Aug 2020 22:41:13 +0200 Subject: [PATCH] Remove unused code --- relational_gui/creator.py | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/relational_gui/creator.py b/relational_gui/creator.py index 412cd22..5b7a32f 100644 --- a/relational_gui/creator.py +++ b/relational_gui/creator.py @@ -1,5 +1,5 @@ # Relational -# Copyright (C) 2008-2015 Salvo "LtWorf" Tomaselli +# Copyright (C) 2008-2020 Salvo "LtWorf" Tomaselli # # Relational is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -142,11 +142,3 @@ def edit_relation(rel=None): Form.exec_() return Form.result_relation - - -if __name__ == '__main__': - import sys - app = QtGui.QApplication(sys.argv) - r = relation.relation( - "/home/salvo/dev/relational/trunk/samples/people.csv") - print (edit_relation(r))