Skip to content

Commit 7925a40

Browse files
author
Brett Hazen
committed
PEP8
1 parent 12af079 commit 7925a40

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

commands.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,6 @@ def run(self):
267267
for perm in self._grants:
268268
self._apply_grant(perm, self._grants[perm])
269269

270-
271270
def _check_available(self):
272271
try:
273272
self.check_security_command("status")
@@ -288,7 +287,7 @@ def _apply_grant(self, perm, targets):
288287
self.run_security_command(cmd)
289288

290289

291-
class enable_security(Command,security_commands):
290+
class enable_security(Command, security_commands):
292291
"""
293292
Actually turn on security.
294293
"""
@@ -310,7 +309,7 @@ def run(self):
310309
self.run_security_command(tuple(cmd.split(' ')))
311310

312311

313-
class disable_security(Command,security_commands):
312+
class disable_security(Command, security_commands):
314313
"""
315314
Actually turn off security.
316315
"""

0 commit comments

Comments
 (0)