Skip to content

Commit

Permalink
verb
Browse files Browse the repository at this point in the history
  • Loading branch information
stnbu committed Sep 8, 2018
1 parent 98cf9a8 commit 80ad888
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions mutils/__init__.py
Expand Up @@ -2,3 +2,9 @@
(Note that README.md is auto-generated, but checked into the repo for prettiness.) (Note that README.md is auto-generated, but checked into the repo for prettiness.)
""" """

from .memoize import *
from .pypi import *
from .rest import *
from .simple_alchemy import *
from .simple_daemon import *
2 changes: 1 addition & 1 deletion mutils/memoize.py
Expand Up @@ -2,7 +2,7 @@


import functools import functools


def memoized(f): def memoize(f):
"""Decorate a function (without arguments), caching its results and returning the cache when available. """Decorate a function (without arguments), caching its results and returning the cache when available.
""" """
proxy_name = '_' + f.__name__ proxy_name = '_' + f.__name__
Expand Down

0 comments on commit 80ad888

Please sign in to comment.