File tree Expand file tree Collapse file tree 2 files changed +20
-2
lines changed Expand file tree Collapse file tree 2 files changed +20
-2
lines changed Original file line number Diff line number Diff line change 4343 with :
4444 name : documentation
4545 path : docs/
46+
47+ publish-docs :
48+ needs : build-docs
49+ runs-on : ubuntu-22.04
50+ steps :
51+ - name : Download Documentation
52+ uses : actions/download-artifact@v4
53+ with :
54+ name : documentation
55+ path : docs/
56+
57+ - name : Deploy to GitHub Pages
58+ uses : peaceiris/actions-gh-pages@v3
59+ with :
60+ github_token : ${{ secrets.GITHUB_TOKEN }}
61+ publish_dir : ./docs
Original file line number Diff line number Diff line change @@ -45,10 +45,12 @@ def __del__(self) -> None:
4545 self ._logger .info ("Destructor" )
4646
4747 @overload
48- def doingstuffs (self , var : int , var2 : float ) -> None : ...
48+ def doingstuffs (self , var : int , var2 : float ) -> None :
49+ ...
4950
5051 @overload
51- def doingstuffs (self , var : int ) -> None : ...
52+ def doingstuffs (self , var : int ) -> None :
53+ ...
5254
5355 def doingstuffs (self , var : Any = None , var2 : Any = None ) -> None :
5456 """An overloaded method that takes one or two arguments and logs their values and types.
You can’t perform that action at this time.
0 commit comments