Skip to content

Commit 3cec380

Browse files
authored
Remove unused imports. (#33)
* Remove unused collections import.
1 parent 52053e2 commit 3cec380

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

metaflow/datastore/datastore.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
import time
55
from hashlib import sha1
66
from functools import partial
7-
from collections import Sequence
87

98
try:
109
# Python 2

metaflow/plugins/conda/conda_step_decorator.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import collections
21
import os
32
import sys
43
from hashlib import sha1
@@ -235,4 +234,4 @@ def runtime_step_cli(self, cli_args, retry_count, max_user_code_retries):
235234
cli_args.entrypoint[0] = self.conda.python(self.env_id)
236235

237236
def runtime_finished(self, exception):
238-
shutil.rmtree(self.metaflow_home)
237+
shutil.rmtree(self.metaflow_home)

0 commit comments

Comments
 (0)