Skip to content

Commit 6a4d695

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent e873c9e commit 6a4d695

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

latex_tables/tables_in_latex.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@
298298
"biomass CHP",
299299
"battery storage",
300300
"home battery storage",
301-
"central coal CHP" "hydrogen storage underground",
301+
"central coal CHPhydrogen storage underground",
302302
"hydrogen storage tank type 1",
303303
"central water tank storage",
304304
"decentral water tank storage",

scripts/_helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def __setattr__(self, name, value):
1919
Setattr is called when the syntax a.b = 2 is used to set a value.
2020
"""
2121
if hasattr(Dict, name):
22-
raise AttributeError("'Dict' object attribute " f"'{name}' is read-only")
22+
raise AttributeError(f"'Dict' object attribute '{name}' is read-only")
2323
self[name] = value
2424

2525
def __getattr__(self, item):

0 commit comments

Comments
 (0)