RosettaCommons / tools

Tools for parsing Rosetta source code and scripts for running specific Rosetta applications.
Other
3 stars 1 forks source link

redundant line #98

Closed danielzaidman closed 3 years ago

aleaverfay commented 3 years ago

Hi Daniel -- that line allows people running this code in python2 to continue being able to run it. I think this commit is worth reverting.

roccomoretti commented 3 years ago

It looks like the line already exists at line 27, so the one at 39 is unnecessary. (Moreover, the from __future__ imports need to be the first non comment/docstring line in the file, so the one at line 39 wouldn't work properly even if it was the only one in the file.)

aleaverfay commented 3 years ago

Thanks for pointing that out, Rocco!