Skip to content

Commit bce41c4

Browse files
authored
removed "wait for classmethod"
1 parent 9155414 commit bce41c4

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

source/exercises/circle_class.rst

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,7 @@ You will use:
3232

3333
- properties.
3434
- a bunch of "magic methods".
35-
- a classmethod (after you've learned about them...).
36-
35+
- a classmethod.
3736

3837
General Instructions:
3938
---------------------
@@ -121,8 +120,6 @@ The user should not be able to set the area:
121120
Step 5:
122121
-------
123122

124-
**NOTE:** wait on this one 'till we learn about class methods..
125-
126123
Add an "alternate constructor" that lets the user create a Circle directly
127124
with the diameter:
128125

@@ -134,6 +131,8 @@ with the diameter:
134131
>> print(c.radius)
135132
4
136133
134+
Hint: This is a good use case for a ``classmethod``
135+
137136
Step 6:
138137
-------
139138

0 commit comments

Comments
 (0)