Skip to content

Commit

Permalink
Fix an incorrect import that sneaked in
Browse files Browse the repository at this point in the history
  • Loading branch information
mstimberg committed Jul 23, 2013
1 parent 0af38b0 commit 2ad5792
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions brian2/monitors/statemonitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,15 @@

import numpy as np

from brian2.core.specifiers import (Value, Subexpression,
ReadOnlyValue, ArrayVariable,
from brian2.core.specifiers import (ReadOnlyValue, ArrayVariable,
AttributeValue, Index)
from brian2.core.base import BrianObject
from brian2.core.scheduler import Scheduler
from brian2.core.preferences import brian_prefs
from brian2.units.fundamentalunits import Unit, Quantity
from brian2.units.fundamentalunits import Unit, Quantity, have_same_dimensions
from brian2.units.allunits import second
from brian2.memory.dynamicarray import DynamicArray, DynamicArray1D
from brian2.groups.group import create_runner_codeobj
from units.fundamentalunits import have_same_dimensions

__all__ = ['StateMonitor']

Expand Down

0 comments on commit 2ad5792

Please sign in to comment.