Merge b80f426f9431ddb3fcb98bbd50c2e11f33e50f51 into 9b2a3758758123e06ac6397e80887e3d9ccb1ce4

This commit is contained in:
Maciej Błędkowski 2021-10-06 11:44:35 +02:00 committed by GitHub
commit 99eff8806d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -6,6 +6,9 @@ Antipixels from Python.
This is especially useful if you want to quickly generate batches
of antipixels.
## Installation
`pip install .`
## Usage example
@ -78,6 +81,3 @@ antipixels = {
For a complete example, have a look at ``apyx_example.py``, in the main
project folder.
-----
[![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/rshk/apyx/trend.png)](https://bitdeli.com/free "Bitdeli Badge")

View File

@ -52,7 +52,7 @@ if __name__ == '__main__':
if not os.path.exists(output_dir):
os.makedirs(output_dir)
for name, config in antipixels.iteritems():
for name, config in antipixels.items():
if 'base' not in config:
config['base'] = default_base
print("Creating antipixel {0}".format(name))