Skip to content

Commit 1cb7681

Browse files
author
Matthew Davis
committed
Correct PEP8 over indentation
1 parent 651d816 commit 1cb7681

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

osc/credentials.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -199,9 +199,9 @@ def _start_SecretService_Keyring(self):
199199
# GNOME Keyring daemon is not running, so we start it here.
200200
process = subprocess.Popen([keyring_daemon,
201201
'--start', '--components=secrets'],
202-
stdin=subprocess.DEVNULL,
203-
stdout=subprocess.DEVNULL,
204-
stderr=subprocess.DEVNULL)
202+
stdin=subprocess.DEVNULL,
203+
stdout=subprocess.DEVNULL,
204+
stderr=subprocess.DEVNULL)
205205
process.communicate(timeout=5)
206206
try:
207207
import secretstorage
@@ -230,9 +230,9 @@ def _unlock_SecretService_Keyring(self, keyring_daemon, collection):
230230
process = subprocess.Popen([keyring_daemon,
231231
'--unlock', '--replace',
232232
'--components=secrets'],
233-
stdin=subprocess.PIPE,
234-
stdout=subprocess.DEVNULL,
235-
stderr=subprocess.DEVNULL)
233+
stdin=subprocess.PIPE,
234+
stdout=subprocess.DEVNULL,
235+
stderr=subprocess.DEVNULL)
236236
process.communicate(input=password, timeout=5)
237237
if collection is None:
238238
import secretstorage

0 commit comments

Comments
 (0)