Chemsseddine commited on
Commit
d4eb76b
·
1 Parent(s): 9239ada

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -50,7 +50,7 @@ def diff_texts(text1, text2):
50
 
51
  # calculate the difference between the two texts
52
  diff = d.compare(text1.split(), text2.split())
53
- result='\n'.join(diff).split()
54
 
55
 
56
 
 
50
 
51
  # calculate the difference between the two texts
52
  diff = d.compare(text1.split(), text2.split())
53
+ result='\n'.join(diff)
54
 
55
 
56