diff --git a/gmso/formats/json.py b/gmso/formats/json.py index 9401af9af..522ffa3f7 100644 --- a/gmso/formats/json.py +++ b/gmso/formats/json.py @@ -299,7 +299,9 @@ def write_json(top, filename, types=True, update=False, **kwargs): The keyword arguments to _to_json and json.dump methods """ json_dict = _to_json( - top, update=update, types=types, + top, + update=update, + types=types, ) if not isinstance(filename, Path): filename = Path(filename).resolve()