-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use black to format the Python code: ``` black -l 99 ionit ionit_plugin.py setup.py tests ``` Signed-off-by: Benjamin Drung <[email protected]>
- Loading branch information
Showing
9 changed files
with
234 additions
and
111 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,13 +40,14 @@ def systemd_unit_path(): | |
"ionit is a simple and small configuration templating tool. It collects a context and " | ||
"renders Jinja templates in a given directory. The context can be either static JSON " | ||
"or YAML files or dynamic Python files. Python files can also define functions passed " | ||
"through to the rendering."), | ||
"through to the rendering." | ||
), | ||
author="Benjamin Drung", | ||
author_email="[email protected]", | ||
url="https://github.com/bdrung/ionit", | ||
license="ISC", | ||
install_requires=["jinja2"], | ||
scripts=["ionit"], | ||
py_modules=["ionit_plugin"], | ||
data_files=[(systemd_unit_path(), ['ionit.service'])] | ||
data_files=[(systemd_unit_path(), ["ionit.service"])], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.