Skip to content

Commit bc913a1

Browse files
authored
Formatting
1 parent 0a12c33 commit bc913a1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

classes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,12 @@ Let's use it to define an empty class.
6363
>>>
6464
```
6565

66-
**_Note_:** If you are using Python 2 I highly recommend using
66+
_**Note:** If you are using Python 2 I highly recommend using
6767
`class Website(object):` instead of `class Website:`. This creates a
6868
new-style class instead of an old-style class. Old-style classes are
6969
different than new-style classes in some ways and not supported in this
7070
tutorial. In Python 3, there are no old-style classes and
71-
`class Website(object):` does the same thing as `class Website:`.
71+
`class Website(object):` does the same thing as `class Website:`._
7272

7373
Note that I named the class `Website`, not `website`. This way we know
7474
that it's a class. Built-in classes use lowercase names (like `str`

0 commit comments

Comments
 (0)