Skip to content

Commit 62d6ea9

Browse files
committed
DOC: use raw strings for docstrings, it is better practice
1 parent 50f6759 commit 62d6ea9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

larray_editor/api.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ def excepthook(type, value, tback):
310310

311311

312312
def edit(obj=None, title='', minvalue=None, maxvalue=None, readonly=False, depth=0):
313-
"""
313+
r"""
314314
Opens a new editor window.
315315
316316
Parameters
@@ -347,7 +347,7 @@ def edit(obj=None, title='', minvalue=None, maxvalue=None, readonly=False, depth
347347

348348

349349
def view(obj=None, title='', depth=0):
350-
"""
350+
r"""
351351
Opens a new viewer window. Arrays are loaded in readonly mode and their content cannot be modified.
352352
353353
Parameters
@@ -390,7 +390,7 @@ def debug(depth=0):
390390

391391

392392
def compare(*args, depth=0, **kwargs):
393-
"""
393+
r"""
394394
Opens a new comparator window, comparing arrays or sessions.
395395
396396
Parameters
@@ -431,7 +431,7 @@ def compare(*args, depth=0, **kwargs):
431431

432432

433433
def run_editor_on_exception(root_path=None, usercode_traceback=True, usercode_frame=True):
434-
"""
434+
r"""
435435
Run the editor when an unhandled exception (a fatal error) happens.
436436
437437
Parameters

0 commit comments

Comments
 (0)