about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorWojciech Siewierski <wojciech.siewierski@onet.pl>2017-05-06 23:10:49 +0200
committerWojciech Siewierski <wojciech.siewierski@onet.pl>2017-05-06 23:10:49 +0200
commit7548d13090ea0fb0f2e42be15413f60c6380e81d (patch)
treef03dbdce7b0c1de0deff7e6588b4414ba0aa2ada
parentd5e269d8f15b189bc54ed48be1c92247a4e0c84c (diff)
downloadranger-7548d13090ea0fb0f2e42be15413f60c6380e81d.tar.gz
Do not import unused modules; fix the pylint tests
-rwxr-xr-xranger.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/ranger.py b/ranger.py
index 72905a3c..3c4b0f01 100755
--- a/ranger.py
+++ b/ranger.py
@@ -25,7 +25,6 @@ return $returnvalue
 from __future__ import (absolute_import, division, print_function)
 
 import sys
-from os.path import exists, abspath
 
 # Need to find out whether or not the flag --clean was used ASAP,
 # because --clean is supposed to disable bytecode compilation
5'>115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173