Remove unused code and pep8

This commit is contained in:
Kovid Goyal 2017-01-09 11:10:41 +05:30
parent 46cbcc5dfb
commit 462acf037b
3 changed files with 3 additions and 5 deletions

View File

@ -1 +1 @@
# empty

View File

@ -253,10 +253,6 @@ def display_bitmap(data, w, h):
img.show()
def cell_size():
return cell_width, cell_height
def test_rendering(text='\'Ping👁a⧽', sz=144, family='Ubuntu Mono for Kovid'):
set_font_family(family, sz)
cells = []

View File

@ -91,8 +91,10 @@ def run_cli(suite, verbosity=4):
if not result.wasSuccessful():
raise SystemExit(1)
def main():
run_tests()
if __name__ == '__main__':
main()