Skip to content

Commit 75af79b

Browse files
hduelmemtwebster
authored andcommitted
remove unused imports updates.py
1 parent 9150b4d commit 75af79b

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

python3/cinnamon/updates.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
#!/usr/bin/python3
22

3-
import os
4-
import sys
53
import gi
64
import gettext
75

@@ -10,15 +8,14 @@
108
gettext.install("cinnamon", "/usr/share/locale", names=["ngettext"])
119

1210
from . import harvester
13-
from .harvester import SpiceUpdate
1411

1512
SPICE_TYPE_APPLET = "applet"
1613
SPICE_TYPE_DESKLET = "desklet"
1714
SPICE_TYPE_THEME = "theme"
1815
SPICE_TYPE_EXTENSION = "extension"
1916
SPICE_TYPES = [SPICE_TYPE_APPLET, SPICE_TYPE_DESKLET, SPICE_TYPE_THEME, SPICE_TYPE_EXTENSION]
2017

21-
class UpdateManager():
18+
class UpdateManager:
2219
def __init__(self):
2320
self.harvesters = {}
2421
for spice_type in SPICE_TYPES:

0 commit comments

Comments
 (0)