Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unused modules #12

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions src/commons.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,21 +38,19 @@
############################################
# Miscellaneous
import ast, collections, contextlib, ctypes, cython, functools, hashlib
import importlib, inspect, itertools, keyword, logging, operator, os, re
import shutil, struct, sys, textwrap, traceback, types
import importlib, inspect, itertools, keyword, logging, os, re
import struct, sys, textwrap, traceback, types
import unicodedata, warnings
from copy import deepcopy
# Numerics
# (note that numpy.array is purposely not imported directly into the
# global namespace, as this does not play well with Cython).
import decimal
import numpy as np
from numpy import arange, asarray, empty, linspace, logspace, ones, zeros
from numpy import arange, asarray, empty, ones
# MPI
import mpi4py.rc; mpi4py.rc.threads = False # Do not use threads
from mpi4py import MPI
# I/O
import io
from glob import glob
# For fancy terminal output
import blessings
Expand Down
Loading