Skip to content

Commit be2125a

Browse files
committed
remove redundant cast
1 parent 8d57e0f commit be2125a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

discord_data/model.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,4 +108,4 @@ def _default(o: Any) -> Any:
108108
def serialize(obj: Any) -> str:
109109
import simplejson
110110

111-
return cast(str, simplejson.dumps(obj, default=_default, namedtuple_as_object=True))
111+
return simplejson.dumps(obj, default=_default, namedtuple_as_object=True)

0 commit comments

Comments
 (0)