sleepygorgoyle commited on
Commit
5d3ca7a
1 Parent(s): 66f6ae1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -7
README.md CHANGED
@@ -26,13 +26,10 @@ Assign files with the texts you want to split into parallel sentences:
26
  file_ru = None
27
  file_nm = None
28
 
29
- if file_ru is None or file_nm is None:
30
- nm_text = 'Ламро. Сахьт. Къена. Адам. Зуда. Вокха. Тӏулг.'
31
- ru_text = 'Горец. Час. Старый. Человек. Жена. Высокий. Камень.'
32
- else:
33
- with open(file_nm, 'r') as f1, open(file_ru, 'r') as f2:
34
- nm_text = f1.read()
35
- ru_text = f2.read()
36
  ```
37
  In the following section define auxillary functions for parallel sentence comparison:
38
  ```python
 
26
  file_ru = None
27
  file_nm = None
28
 
29
+
30
+ with open(file_nm, 'r') as f1, open(file_ru, 'r') as f2:
31
+ nm_text = f1.read()
32
+ ru_text = f2.read()
 
 
 
33
  ```
34
  In the following section define auxillary functions for parallel sentence comparison:
35
  ```python