File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ def execute(self, filename):
3939 os .rename (filename , f'.{ filename } ' )
4040 self ._hidden_files .append (filename )
4141 else :
42- print (f'{ filename } dose not exists to hide' )
42+ print (f'{ filename } does not exists to hide' )
4343
4444 def undo (self ):
4545 if len (self ._hidden_files ) > 0 :
@@ -71,7 +71,7 @@ def execute(self, filename):
7171 os .rename (filename , f'{ self ._deleted_files_path } /{ filename } ' )
7272 self ._deleted_files .append (filename )
7373 else :
74- print (f'{ filename } dose not exists to delete' )
74+ print (f'{ filename } does not exists to delete' )
7575
7676 def undo (self ):
7777 if len (self ._deleted_files ) > 0 :
@@ -111,9 +111,9 @@ def main():
111111 >>> item1.on_do_press(test_file_name)
112112 deleting test-file
113113
114- # hiding `test-file` but it dose not exists
114+ # hiding `test-file` but it does not exists
115115 >>> item2.on_do_press(test_file_name)
116- test-file dose not exists to hide
116+ test-file does not exists to hide
117117
118118 # un-deleting `test-file`
119119 >>> item1.on_undo_press()
You can’t perform that action at this time.
0 commit comments