Skip to content

Commit 21da5fb

Browse files
Makefile update
1 parent 466b6d5 commit 21da5fb

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

examples/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ run: all
3030
for EXAMPLE_DIR in $(EXAMPLE_DIRS); do \
3131
cp -fu circuit_base.py $$EXAMPLE_DIR; \
3232
pushd $$EXAMPLE_DIR > /dev/null; \
33-
echo Executing $$EXAMPLE_DIR/simulation.py; \
33+
echo Executing $${EXAMPLE_DIR}simulation.py; \
3434
python3 simulation.py; \
3535
popd > /dev/null; \
3636
done

examples/circuit_base.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
# You should have received a copy of the GNU General Public License
1414
# along with this program; If not, see <https://www.gnu.org/licenses/>
1515

16-
# import math
1716
import numpy as np
1817

1918
class element:

0 commit comments

Comments
 (0)