File tree Expand file tree Collapse file tree 3 files changed +4
-174
lines changed
Expand file tree Collapse file tree 3 files changed +4
-174
lines changed Original file line number Diff line number Diff line change 66# -- Project information -----------------------------------------------------
77# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
88
9+ from typing import List
10+
911project = "git-autograder"
1012copyright = "2025, Jiahao Woo"
1113author = "Jiahao Woo"
1416# -- General configuration ---------------------------------------------------
1517# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
1618
17- extensions = [
18- "sphinx.ext.autodoc" ,
19- "sphinx.ext.viewcode"
20- ]
19+ extensions = ["sphinx.ext.autodoc" , "sphinx.ext.viewcode" ]
2120
2221templates_path = ["_templates" ]
23- exclude_patterns = []
22+ exclude_patterns : List [ str ] = []
2423
2524
2625# -- Options for HTML output -------------------------------------------------
Original file line number Diff line number Diff line change 11__all__ = [
2- "set_env" ,
3- "assert_output" ,
42 "GitAutograderException" ,
53 "GitAutograderInvalidStateException" ,
64 "GitAutograderWrongAnswerException" ,
7- "GitAutograderTestLoader" ,
85 "GitAutograderRepo" ,
96 "GitAutograderRepoBase" ,
107 "GitAutograderStatus" ,
2825from .repo .repo import GitAutograderRepo
2926from .repo .repo_base import GitAutograderRepoBase
3027from .status import GitAutograderStatus
31- from .test_utils import (
32- GitAutograderTestLoader ,
33- assert_output ,
34- set_env ,
35- )
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments