From e2e20346ba428d195c4c77eece7de3830668607e Mon Sep 17 00:00:00 2001 From: David Silva Date: Sun, 7 Jan 2018 03:11:29 +0000 Subject: [PATCH] fix(main): remove comments just to get some output --- main.py | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/main.py b/main.py index a889368..2cdd327 100644 --- a/main.py +++ b/main.py @@ -212,23 +212,23 @@ if __name__ == "__main__": import pprint pp = pprint.PrettyPrinter() - # pp.pprint('top5') - # pp.pprint(top5teams()) - # - # pp.pprint('top30') - # pp.pprint(top30teams()) - # - # pp.pprint('top_players') - # pp.pprint(top_players()) - # - # pp.pprint('get_players') - # pp.pprint(get_players('6137')) - # - # pp.pprint('get_team_info') - # pp.pprint(get_team_info('6137')) - # - # pp.pprint('get_matches') - # pp.pprint(get_matches()) - # - # pp.pprint('get_results') - # pp.pprint(get_results()) + pp.pprint('top5') + pp.pprint(top5teams()) + + pp.pprint('top30') + pp.pprint(top30teams()) + + pp.pprint('top_players') + pp.pprint(top_players()) + + pp.pprint('get_players') + pp.pprint(get_players('6137')) + + pp.pprint('get_team_info') + pp.pprint(get_team_info('6137')) + + pp.pprint('get_matches') + pp.pprint(get_matches()) + + pp.pprint('get_results') + pp.pprint(get_results())