Skip to content
This repository was archived by the owner on Sep 12, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/changelog.md.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@

-----------------

### 4/26/2022

* 7.01 - Corrected subclass example in lesson plan (Issue #383)

-----------------

### 3/26/2021

* Unit 2 Lesson, labs, projects and slide deck copy editing
Expand Down
3 changes: 1 addition & 2 deletions docs/units/7_unit/01_lesson/do_now.md.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@

my_pets = [my_pet_1, my_pet_2, my_pet_3]
for pet in my_pets:
## print full name of each pet

# print full name of each pet
```

## In your Notebook
Expand Down
Binary file modified docs/units/7_unit/01_lesson/images/embedded_object_diagram.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/units/7_unit/01_lesson/images/object_diagram.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions docs/units/7_unit/01_lesson/lesson.md.html
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@

* An object can be visualized with an **object diagram**.

![An object diagram for a Pet object.](images/object_diagram.png)
![An object diagram for a Pet object.](images/object_diagram.png)

* Objects can be attributes for another object. These are **embedded objects**. The following example illustrates this.

Expand All @@ -118,12 +118,12 @@
my_pet.noise = 'neigh'
my_pet.full_name = 'Rainbow'
my_pet.owner = Owner()
me.owner.full_name = 'Princess Firebolt'
my_pet.owner.full_name = 'Princess Firebolt'
```

* An object diagram for an embedded object looks like the following.

![An object diagram with an embedded object.](images/embedded_object_diagram.png)
![An object diagram with an embedded object.](images/embedded_object_diagram.png)

#### Instruction - Debugging objects

Expand Down
Binary file modified docs/units/7_unit/slidedecks/Intro Python 7.01 TEALS.pptx
Binary file not shown.
3 changes: 1 addition & 2 deletions units/7_unit/01_lesson/do_now.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ my_pet_3_full_name = 'Snickers Snorkel'

my_pets = [my_pet_1, my_pet_2, my_pet_3]
for pet in my_pets:
## print full name of each pet

# print full name of each pet
```

## In your Notebook
Expand Down
Binary file modified units/7_unit/01_lesson/images/embedded_object_diagram.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified units/7_unit/01_lesson/images/object_diagram.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions units/7_unit/01_lesson/lesson.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ Students will be able to...

* An object can be visualized with an **object diagram**.

![An object diagram for a Pet object.](images/object_diagram.png)
![An object diagram for a Pet object.](images/object_diagram.png)

* Objects can be attributes for another object. These are **embedded objects**. The following example illustrates this.

Expand All @@ -109,12 +109,12 @@ Students will be able to...
my_pet.noise = 'neigh'
my_pet.full_name = 'Rainbow'
my_pet.owner = Owner()
me.owner.full_name = 'Princess Firebolt'
my_pet.owner.full_name = 'Princess Firebolt'
```

* An object diagram for an embedded object looks like the following.

![An object diagram with an embedded object.](images/embedded_object_diagram.png)
![An object diagram with an embedded object.](images/embedded_object_diagram.png)

#### Instruction - Debugging objects

Expand Down
Binary file modified units/7_unit/slidedecks/Intro Python 7.01 TEALS.pptx
Binary file not shown.