Skip to content

Commit dc04780

Browse files
algalivanov
andauthored
Update empty str literal from single to double quote
Co-authored-by: Paul Ivanov <pi@berkeley.edu>
1 parent 47b41d8 commit dc04780

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

IPython/core/shellapp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ def init_path(self):
260260
.. versionchanged:: X.X
261261
Respect sys.flags.safe_path (PYTHONSAFEPATH and -P flag)
262262
"""
263-
if '' in sys.path or self.ignore_cwd or sys.flags.safe_path:
263+
if "" in sys.path or self.ignore_cwd or sys.flags.safe_path:
264264
return
265265
for idx, path in enumerate(sys.path):
266266
parent, last_part = os.path.split(path)

0 commit comments

Comments
 (0)