From 3d38a87d4c09a81628218cc2d322e140d8075682 Mon Sep 17 00:00:00 2001 From: mh-northlander Date: Fri, 14 Jun 2024 09:40:12 +0000 Subject: [PATCH] deploy: 89279f9a5e6e5eb15155abe14e77758259c61e87 --- python/_modules/sudachipy/config.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/python/_modules/sudachipy/config.html b/python/_modules/sudachipy/config.html index 14c47a44..116ca664 100644 --- a/python/_modules/sudachipy/config.html +++ b/python/_modules/sudachipy/config.html @@ -94,13 +94,13 @@

Source code for sudachipy.config

 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 #   See the License for the specific language governing permissions and
 #   limitations under the License.
-import dataclasses
-from dataclasses import dataclass, asdict
-from json import dumps
+import dataclasses as _dataclasses
+from json import dumps as _dumps
+
 
 
[docs] -@dataclass +@_dataclasses.dataclass class Config: """ SudachiPy rich configuration object. @@ -152,11 +152,11 @@

Source code for sudachipy.config

         """
         Convert this Config object to the json string
         """
-        return dumps(_filter_nulls(asdict(self)))
+ return _dumps(_filter_nulls(_dataclasses.asdict(self)))
def update(self, **changes): - return dataclasses.replace(self, **changes)
+ return _dataclasses.replace(self, **changes)