Removed unused variable

This commit is contained in:
Salvo 'LtWorf' Tomaselli 2015-11-11 17:01:52 +01:00
parent bdddb29b64
commit 3012a08ff3
6 changed files with 4 additions and 9 deletions

View File

@ -24,8 +24,6 @@
#
# Language definition here:
# http://ltworf.github.io/relational/grammar.html
import re
from relational import rtypes
RELATION = 0

View File

@ -190,8 +190,6 @@ class Relation (object):
For example if you want to rename a to b, call
rel.rename({'a':'b'})
'''
result = []
newt = relation()
newt.header = self.header.rename(params)

View File

@ -16,7 +16,6 @@
#
# author Salvo "LtWorf" Tomaselli <tiposchi@tiscali.it>
import os
from PyQt5 import QtCore, QtGui, QtWidgets
try: # If QtWebKit is available, uses it

View File

@ -16,7 +16,7 @@
#
# author Salvo "LtWorf" Tomaselli <tiposchi@tiscali.it>
from PyQt5 import QtCore, QtGui, QtWidgets
from PyQt5 import QtGui, QtWidgets
from relational_gui import rel_edit
from relational import relation

View File

@ -17,9 +17,9 @@
# author Salvo "LtWorf" Tomaselli <tiposchi@tiscali.it>
import sys
from PyQt5 import QtCore, QtWidgets, QtWidgets, QtGui
from PyQt5 import QtCore, QtWidgets, QtGui
from relational import relation, parser, optimizer, rtypes
from relational import parser, optimizer, rtypes
from relational.maintenance import UserInterface
from relational_gui import about

View File

@ -19,7 +19,7 @@
import platform
import locale
from PyQt5 import QtCore, QtGui, QtWidgets
from PyQt5 import QtWidgets
from relational import maintenance