File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -119,14 +119,14 @@ For example:
119
119
.. code-block :: python
120
120
121
121
value = str
122
- f " Unknown recived value, got: { repr (value)} "
122
+ f " Unknown received value, got: { repr (value)} "
123
123
124
124
**Good: **
125
125
126
126
.. code-block :: python
127
127
128
128
value = str
129
- f " Unknown recived type, got: ' { type (value).__name__ } ' "
129
+ f " Unknown received type, got: ' { type (value).__name__ } ' "
130
130
131
131
132
132
Imports (aim for absolute)
@@ -135,11 +135,11 @@ Imports (aim for absolute)
135
135
In Python 3, absolute imports are recommended. In absolute import doing something
136
136
like ``import string `` will import the string module rather than ``string.py ``
137
137
in the same directory. As much as possible, you should try to write out
138
- absolute imports that show the whole import chain from toplevel pandas.
138
+ absolute imports that show the whole import chain from top-level pandas.
139
139
140
- Explicit relative imports are also supported in Python 3. But it is not
141
- recommended to use it . Implicit relative imports should never be used
142
- and is removed in Python 3.
140
+ Explicit relative imports are also supported in Python 3 but it is not
141
+ recommended to use them . Implicit relative imports should never be used
142
+ and are removed in Python 3.
143
143
144
144
For example:
145
145
You can’t perform that action at this time.
0 commit comments