Github user cclauss commented on a diff in the pull request: https://github.com/apache/climate/pull/439#discussion_r131525571 --- Diff: mccsearch/code/mainProgTemplate.py --- @@ -59,36 +59,36 @@ def main(): # ------------------------------------------------------------------------------------------------- # let's go! - print "\n -------------- Read MERG Data ----------" + print("\n -------------- Read MERG Data ----------") mergImgs, timeList = mccSearch.readMergData(CEoriDirName) - print ("-" * 80) + print(("-" * 80)) --- End diff -- Recommendation to change `print(("-" * 80))` to `print("-" * 80)` in eight places. The double nested parens `(( ))` are not needed and only slow down your reader. Repeated on lines: 64, 75, 77, 80, 82, 86, 89, 112.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---