Skip to content

Commit

Permalink
Remove unused imports. (#33)
Browse files Browse the repository at this point in the history
* Remove unused collections import.
  • Loading branch information
tirkarthi authored Feb 11, 2020
1 parent 52053e2 commit 3cec380
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion metaflow/datastore/datastore.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import time
from hashlib import sha1
from functools import partial
from collections import Sequence

try:
# Python 2
Expand Down
3 changes: 1 addition & 2 deletions metaflow/plugins/conda/conda_step_decorator.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import collections
import os
import sys
from hashlib import sha1
Expand Down Expand Up @@ -235,4 +234,4 @@ def runtime_step_cli(self, cli_args, retry_count, max_user_code_retries):
cli_args.entrypoint[0] = self.conda.python(self.env_id)

def runtime_finished(self, exception):
shutil.rmtree(self.metaflow_home)
shutil.rmtree(self.metaflow_home)

0 comments on commit 3cec380

Please sign in to comment.