Skip to content

Commit ac4f9b4

Browse files
committed
fix lint
1 parent 3c6fbe3 commit ac4f9b4

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

mtv/utils.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,14 @@
33
import logging
44
import os
55

6-
from yaml import load, dump
6+
from bson import ObjectId
7+
from yaml import load
8+
79
try:
8-
from yaml import CLoader as Loader, CDumper as Dumper
10+
from yaml import CLoader as Loader
911
except ImportError:
10-
from yaml import Loader, Dumper
12+
from yaml import Loader
1113

12-
from bson import ObjectId
1314

1415
LOGGER = logging.getLogger(__name__)
1516

0 commit comments

Comments
 (0)