Skip to content

Commit

Permalink
Update default_list.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ikostan committed Dec 18, 2024
1 parent 1d66000 commit 70891e1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions kyu_6/default_list/default_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def __getitem__(self, i: int):

def extend(self, items: list) -> None:
"""
This class must also support the regular list functions: extend.
Support the regular list functions: extend.
:param items: iterable
:return:
Expand All @@ -46,7 +46,7 @@ def extend(self, items: list) -> None:

def append(self, item) -> None:
"""
This class must also support the regular list functions: append.
Support the regular list functions: append.
:param item:
:return:
Expand All @@ -55,7 +55,7 @@ def append(self, item) -> None:

def pop(self, item):
"""
This class must also support the regular list functions: pop.
Support the regular list functions: pop.
:param item:
:return:
Expand All @@ -64,7 +64,7 @@ def pop(self, item):

def remove(self, item) -> None:
"""
This class must also support the regular list functions: remove.
Support the regular list functions: remove.
:param item:
:return:
Expand All @@ -73,7 +73,7 @@ def remove(self, item) -> None:

def insert(self, index: int, item) -> None:
"""
This class must also support the regular list functions: insert.
Support the regular list functions: insert.
:param index:
:param item:
Expand Down

0 comments on commit 70891e1

Please sign in to comment.