Skip to content

Commit

Permalink
release 7.137.22057
Browse files Browse the repository at this point in the history
  • Loading branch information
klahnakoski committed Feb 26, 2022
2 parents 6b59701 + f51ff56 commit 90e56a3
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
name='mo-kwargs',
packages=["mo_kwargs"],
url='https://github.com/klahnakoski/mo-kwargs',
version='7.136.22057',
version='7.137.22057',
zip_safe=False
)
2 changes: 1 addition & 1 deletion setuptools.json
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,6 @@
"name": "mo-kwargs",
"packages": ["mo_kwargs"],
"url": "https://github.com/klahnakoski/mo-kwargs",
"version": "7.136.22057",
"version": "7.137.22057",
"zip_safe": false
}
11 changes: 11 additions & 0 deletions tests/smoke_test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from mo_kwargs import override


@override(kwargs="config")
def test_function(config=None):
config.config = None
print(config)


if __name__ == "__main__":
test_function(a=1, b=2, c=3)

0 comments on commit 90e56a3

Please sign in to comment.