Skip to content

Commit

Permalink
static: fix typing issue in tests/test_docs/base.py
Browse files Browse the repository at this point in the history
  • Loading branch information
marcofavorito committed May 12, 2023
1 parent 5be15a8 commit 297fef9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_docs/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
MISTUNE_BLOCK_CODE_ID = "block_code"


def compile_and_exec(code: str, locals_dict: Dict = None) -> Dict:
def compile_and_exec(code: str, locals_dict: Optional[Dict] = None) -> Dict:
"""
Compile and exec the code.
Expand Down

0 comments on commit 297fef9

Please sign in to comment.