Skip to content

Commit c8ad558

Browse files
committed
Standardize on """ for docstrings
And use consistent newlines
1 parent 1fbc3e2 commit c8ad558

12 files changed

Lines changed: 154 additions & 114 deletions

bugzilla/_cli.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,10 @@ def to_encoding(ustring):
7474

7575

7676
def open_without_clobber(name, *args):
77-
'''Try to open the given file with the given mode; if that filename exists,
78-
try "name.1", "name.2", etc. until we find an unused filename.'''
77+
"""
78+
Try to open the given file with the given mode; if that filename exists,
79+
try "name.1", "name.2", etc. until we find an unused filename.
80+
"""
7981
fd = None
8082
count = 1
8183
orig_name = name

0 commit comments

Comments
 (0)