Skip to content

Commit 2a71ba4

Browse files
authored
Merge pull request #227 from gdsfactory/add_code_owners
add_code_owners
2 parents 4d71dee + 736a7f8 commit 2a71ba4

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @joamatab @sebastian-goeldi @ThomasPluck @nikosavola

.github/write_models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Write model documentation."""
22

3-
from jinja2 import Environment, FileSystemLoader
3+
from jinja2 import Environment, FileSystemLoader, select_autoescape
44

55
import qpdk
66
from qpdk.config import PATH
@@ -43,7 +43,7 @@
4343
]
4444

4545
# Setup Jinja2
46-
env = Environment(loader=FileSystemLoader(template_dir), autoescape=False)
46+
env = Environment(loader=FileSystemLoader(template_dir), autoescape=select_autoescape())
4747
template = env.get_template("models_static.rst.j2")
4848

4949
rendered = template.render(items=items)

qpdk/models/waveguides.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,7 @@ def straight_shorted(
6868
It seems to be a Sax limitation that we need to define at least two ports.
6969
7070
Args:
71-
**kwargs
72-
Keyword arguments forwarded to :func:`qpdk.models.straight`.
71+
**kwargs: Keyword arguments forwarded to :func:`qpdk.models.straight`.
7372
See :class:`StraightModelKwargs` for the supported parameters.
7473
7574
Returns:

0 commit comments

Comments
 (0)