Skip to content

Commit 8f4f0e5

Browse files
committed
Remove stupid typing.
1 parent e524e15 commit 8f4f0e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mystbin/backend/routers/admin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ async def release_hook(request: MystbinRequest):
254254
config = pathlib.Path("../../config.json")
255255

256256
with open(config) as f:
257-
config: Dict[str, Dict[str, Any]] = ujson.load(f)
257+
config = ujson.load(f)
258258

259259
SECRET = config['github_secret'].encode()
260260

0 commit comments

Comments
 (0)