From 6955f6282c5cab754447e66482f8f87edb640d94 Mon Sep 17 00:00:00 2001 From: "Rob G. Healey" Date: Tue, 15 May 2012 02:04:14 +0000 Subject: [PATCH] pylint cleanup; remove unused imports. svn: r19521 --- src/plugins/gramplet/EditExifMetadata.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/plugins/gramplet/EditExifMetadata.py b/src/plugins/gramplet/EditExifMetadata.py index 19eecf6a8..5849dac78 100644 --- a/src/plugins/gramplet/EditExifMetadata.py +++ b/src/plugins/gramplet/EditExifMetadata.py @@ -27,15 +27,12 @@ # ***************************************************************************** import os import datetime -import calendar import time from PIL import Image # abilty to escape certain characters from output from xml.sax.saxutils import escape as _html_escape -from itertools import chain - from decimal import Decimal, getcontext getcontext().prec = 6 from fractions import Fraction @@ -72,8 +69,6 @@ from PlaceUtils import conv_lat_lon from gen.db import DbTxn -from ListModel import ListModel - import pyexiv2 # v0.1 has a different API to v0.2 and above