Skip to content

Commit e7c2f2b

Browse files
committed
fix docs
1 parent 154390c commit e7c2f2b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/model/orm/orm_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def __str__(self):
3030
return f"<{type(self).__name__} {', '.join(parts)}>"
3131

3232
def __repr__(self):
33-
return f"{type(self).__name__}({', '.join([f"{k}={repr(v)}" for k, v in self._asdict().items()])}>"
33+
return f"{type(self).__name__}({', '.join([f'{k}={repr(v)}' for k, v in self._asdict().items()])}>"
3434

3535
def _validate_inclusion(self, key, value, valid_values):
3636
if value not in valid_values:

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120
html_output_encoding = "utf-8"
121121

122122
# -- Options for PDF output --------------------------------------------------
123-
latex_logo = "_static/logo-free-white.png"
123+
latex_logo = "_static/logo.png"
124124

125125
# -- Templating --------------------------------------------------------------
126126

0 commit comments

Comments
 (0)