Index
joshstock.in
/
29e63dd
Source for serving and static templating/compiling of https://joshstock.in.
Download
|
Refs
|
Commit Log
|
Files
|
README
|
LICENSE
Latest Commit
{#}
Time
Hash
Subject
Author
#
(+)
(-)
GPG?
158
14 Jan 2023 23:37
5aaa26a
Website rewrite
Josh Stockin
1
4
0
G
Blob @
joshstock.in
/
site
/
generators
/
_variables.py
application/x-python
192 bytes
download raw
1
def
verify
(
input_variables
,
requires
):
2
for
name
in
requires
:
3
if not
name
in
input_variables
:
4
raise
KeyError
(
f
"Generator requires variable
{name}
in inputed variables"
)
5