From 9cce43fd04b7c7242a9b8a98fff0e0f6f04bdb29 Mon Sep 17 00:00:00 2001 From: Matt Wala Date: Sun, 25 Jun 2017 02:08:59 -0500 Subject: [PATCH] QBXLayerPotentialSource.copy(): Fix _refined_for_global_qbx to have a default argument of _not_provided (closes #59 on gitlab). Without this fix, the copied layer potential source thinks it is not refined. --- pytential/qbx/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytential/qbx/__init__.py b/pytential/qbx/__init__.py index 0b94f90b..16814fec 100644 --- a/pytential/qbx/__init__.py +++ b/pytential/qbx/__init__.py @@ -173,7 +173,7 @@ class QBXLayerPotentialSource(LayerPotentialSourceBase): performance_data_file=None, debug=_not_provided, - _refined_for_global_qbx=None, + _refined_for_global_qbx=_not_provided, target_stick_out_factor=_not_provided, ): -- GitLab