Skip to content

Commit edd73f0

Browse files
committed
Resolve some linter errors and warnings
1 parent 0bab473 commit edd73f0

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,7 @@ def run(self):
278278
update_desktop_file(desktop_file, script_path)
279279
remove_appdata_in(self.root, target_data)
280280

281+
281282
DistUtilsExtra.auto.setup(
282283
name='sgt-launcher',
283284
version='0.2.3',

sgtlauncher_lib/sgtlauncherconfig.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@
2727

2828
import os # nopep8
2929

30-
from locale import gettext as _ # nopep8
31-
3230

3331
class project_path_not_found(Exception):
3432
"""Raised when we can't find the project directory."""
@@ -58,7 +56,7 @@ def get_data_path():
5856
else:
5957
abs_data_path = os.path.abspath(__sgtlauncher_data_directory__)
6058
if not os.path.exists(abs_data_path):
61-
print (abs_data_path)
59+
print(abs_data_path)
6260
raise project_path_not_found
6361

6462
return abs_data_path

0 commit comments

Comments
 (0)