From fefbb66a0b5ae0b9bbf50c91ec92a3ce92f7d1ad Mon Sep 17 00:00:00 2001 From: Sylwester Arabas Date: Sat, 8 May 2021 23:54:33 +0200 Subject: [PATCH] fix exdown logic for Python pytest tests --- README.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/README.md b/README.md index 73b1e4942..447f843f1 100644 --- a/README.md +++ b/README.md @@ -187,7 +187,6 @@ Instantiation of the ``Core`` class is handled by the ``Builder``
Julia (click to expand) - ```Julia Builder = pyimport("PySDM").Builder Box = pyimport("PySDM.environments").Box @@ -205,7 +204,6 @@ particles = builder.build(attributes, products)
Matlab (click to expand) - ```Matlab Builder = py.importlib.import_module('PySDM').Builder; Box = py.importlib.import_module('PySDM.environments').Box; @@ -262,7 +260,6 @@ In the listing below, its usage is interleaved with plotting logic
Julia (click to expand) - ```Julia rho_w = pyimport("PySDM.physics.constants").rho_w using Plots @@ -287,7 +284,6 @@ savefig("plot.svg")
Matlab (click to expand) - ```Matlab rho_w = py.importlib.import_module('PySDM.physics.constants').rho_w;