Skip to content

Commit

Permalink
fix some LGTM issues
Browse files Browse the repository at this point in the history
  • Loading branch information
shyamd committed Sep 14, 2020
1 parent 1802144 commit f10552d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions src/maggma/cli/source_loader.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,19 @@
import importlib.util
import sys
import types
from glob import glob
from importlib.abc import Loader, MetaPathFinder
from importlib.machinery import ModuleSpec, SourceFileLoader
from pathlib import Path
from typing import List
from nbformat import read
from regex import match


from maggma.core import Builder

try:
import nbformat
from IPython import get_ipython
from IPython.core.interactiveshell import InteractiveShell
from regex import match
except ModuleNotFoundError:
pass

Expand Down
2 changes: 1 addition & 1 deletion src/maggma/stores/gridfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import json
import zlib
from datetime import datetime
from typing import Any, Dict, Iterator, List, Optional, Set, Tuple, Union
from typing import Any, Dict, Iterator, List, Optional, Tuple, Union

import gridfs
from monty.dev import deprecated
Expand Down

0 comments on commit f10552d

Please sign in to comment.