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 __future__ imports #473

Merged
merged 2 commits into from
Oct 12, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 0 additions & 2 deletions bluepyopt/deapext/tools/selIBEA.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
"""IBEA selector"""

from __future__ import division

from past.builtins import xrange # pylint: disable=W0622

"""
Expand Down
4 changes: 0 additions & 4 deletions bluepyopt/ephys/serializer.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
'''Mixin class to make dictionaries'''
from __future__ import unicode_literals
from __future__ import print_function
from __future__ import division
from __future__ import absolute_import

# Disabling lines below, generate error when loading ephys.examples
# from future import standard_library
Expand Down
2 changes: 0 additions & 2 deletions bluepyopt/ipyp/bpopt_tasksdb.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
"""Get stats out of ipyparallel's tasks.db"""

from __future__ import print_function

"""
Copyright (c) 2016-2020, EPFL/Blue Brain Project

Expand Down
2 changes: 0 additions & 2 deletions examples/graupnerbrunelstdp/run_fit.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

# pylint: disable=R0914

from __future__ import print_function

import pickle
import bluepyopt as bpop
import matplotlib.pyplot as plt
Expand Down
Loading
Loading