Skip to content

Commit e0de6ec

Browse files
committed
code linted using flake8
1 parent cd7e3b0 commit e0de6ec

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

markdown_viewer/markdown_viewer.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,8 @@ def __init__(self, master=None):
1515
def openfile(self):
1616
filename = \
1717
filedialog.askopenfilename(filetypes=(('Markdown File',
18-
'*.md , *.mdown , *.markdown'),
19-
('Text file', '*.txt'),
20-
('All files', '*.*')))
18+
'*.md , *.mdown'),
19+
('Text file', '*.txt')))
2120
if filename:
2221
try:
2322
md2html = Markdown()

0 commit comments

Comments
 (0)