Skip to content

Commit 41023c4

Browse files
authored
Merge pull request #1 from ssssank/fix_code_style
Fix code style
2 parents c9db481 + 65feb9d commit 41023c4

File tree

1 file changed

+6
-10
lines changed

1 file changed

+6
-10
lines changed

README.md

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,12 @@ pip install hexlet-points
1414

1515
<!-- This code will be doctested. Do not touch the markup! -->
1616

17-
>>> from hexlet import points
18-
>>> p = points.make(100, 200)
19-
>>> print(points.to_string(p))
20-
(100, 200)
21-
>>> points.get_x(p)
22-
100
23-
>>> points.get_y(p)
24-
200
25-
>>> points.get_quadrant(p)
26-
1
17+
from hexlet import points
18+
p = points.make(100, 200)
19+
print(points.to_string(p)) # (100, 200)
20+
points.get_x(p) # 100
21+
points.get_y(p) # 200
22+
points.get_quadrant(p) # 1
2723

2824
[![Hexlet Ltd. logo](https://raw.githubusercontent.com/Hexlet/assets/master/images/hexlet_logo128.png)](https://ru.hexlet.io/pages/about)
2925

0 commit comments

Comments
 (0)