X Tutup
Skip to content

Commit bf2b32f

Browse files
committed
Apply black
1 parent 55a2b5a commit bf2b32f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

bpdb/debugger.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626

2727
class BPdb(pdb.Pdb):
28-
""" PDB with BPython support. """
28+
"""PDB with BPython support."""
2929

3030
def __init__(self, *args, **kwargs):
3131
pdb.Pdb.__init__(self, *args, **kwargs)

bpython/curtsiesfrontend/interaction.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ def confirm(self, q):
167167
return self.main_context.switch(q)
168168

169169
def file_prompt(self, s):
170-
"""Expected to return a file name, given """
170+
"""Expected to return a file name, given"""
171171
self.request_context = greenlet.getcurrent()
172172
self.prompt = s
173173
self.in_prompt = True

bpython/simpleeval.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ def _convert(node):
179179

180180

181181
def safe_getitem(obj, index):
182-
""" Safely tries to access obj[index] """
182+
"""Safely tries to access obj[index]"""
183183
if type(obj) in (list, tuple, dict, bytes, str):
184184
try:
185185
return obj[index]

0 commit comments

Comments
 (0)
X Tutup