diff --git a/solvebio/__main__.py b/solvebio/__main__.py index 5c84fbf4..9070a092 100644 --- a/solvebio/__main__.py +++ b/solvebio/__main__.py @@ -4,4 +4,4 @@ from .cli.main import main if __name__ == "__main__": - main(sys.argv[1:]) \ No newline at end of file + main() diff --git a/solvebio/auth.py b/solvebio/auth.py index 5aa73e27..3f4fddfa 100644 --- a/solvebio/auth.py +++ b/solvebio/auth.py @@ -11,7 +11,7 @@ import requests from solvebio import SolveError -from solvebio.cli.credentials import get_credentials +from solvebio.cli.credentials import get_credentials, netrc logger = logging.getLogger("solvebio")