We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc2d613 commit 02c0ab5Copy full SHA for 02c0ab5
doc/source/development/contributing_code_guide.rst
@@ -55,20 +55,26 @@ For example:
55
56
.. code-block:: python
57
58
+ foo = "old_function"
59
+ bar = "new_function"
60
+
61
my_warning_message = (
- f"Warning, {old_function_name} is deprecated, "
62
+ f"Warning, {foo} is deprecated, "
63
"please use the new and way better "
- f"{new_function_name}"
64
+ f"{bar}"
65
)
66
67
**Bad:**
68
69
70
71
72
73
74
75
76
f"please use the new and way better "
77
78
79
80
White spaces
0 commit comments