Skip to content

Commit 12ce82f

Browse files
Fix CSS error in html_writer.py (#308)
1 parent a9653d0 commit 12ce82f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fastdup/html_writer.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ def write_css(css_dir=None, max_width=None, jupyter_html=False):
416416
position: absolute;
417417
margin: 0;
418418
bottom: 0;
419-
wifth: 150px
419+
width: 150px;
420420
right: 59px;
421421
}
422422
@@ -754,4 +754,4 @@ def write_to_html_file(df, title='', filename='out.html', stats_info = None, sub
754754
# </html> '''
755755
with open(filename, 'w') as f:
756756
f.write(result)
757-
assert os.path.exists(filename), "Failed to write file " + filename
757+
assert os.path.exists(filename), "Failed to write file " + filename

0 commit comments

Comments
 (0)