Skip to content

Commit

Permalink
Fix CSS error in html_writer.py (#308)
Browse files Browse the repository at this point in the history
  • Loading branch information
kakumarabhishek authored Jan 9, 2024
1 parent a9653d0 commit 12ce82f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fastdup/html_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ def write_css(css_dir=None, max_width=None, jupyter_html=False):
position: absolute;
margin: 0;
bottom: 0;
wifth: 150px
width: 150px;
right: 59px;
}
Expand Down Expand Up @@ -754,4 +754,4 @@ def write_to_html_file(df, title='', filename='out.html', stats_info = None, sub
# </html> '''
with open(filename, 'w') as f:
f.write(result)
assert os.path.exists(filename), "Failed to write file " + filename
assert os.path.exists(filename), "Failed to write file " + filename

0 comments on commit 12ce82f

Please sign in to comment.