Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
youknowone committed Nov 14, 2018
1 parent c8bab2f commit 13ca5b5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions docs/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ Ring will have full control for any layer of caching.
:see: :doc:`why` if this document doesn't explain what **Ring** does.


method, classmethod, staticmethod
---------------------------------
method, classmethod, staticmethod, property
-------------------------------------------

**Ring** is adaptable for any kind of methods for Python class.

Expand Down Expand Up @@ -133,6 +133,9 @@ method, classmethod, staticmethod
assert p.url_property == p.url
:see: :doc:`factory` for details.


Choosing backend
----------------

Expand Down
2 changes: 1 addition & 1 deletion ring/func/base.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
""":mod:`ring.func.base` --- The building blocks of **ring.func.\***.
=====================================================================
"""
""" # noqa: W605
import abc
import types
from typing import List
Expand Down
2 changes: 1 addition & 1 deletion tests/_test_callable_py3.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def test_kwargify_exc_py3(f, args, kwargs, exc):


def test_annotations():
def f(a: int, b: str, *c, d: Any=10, **e) -> Optional[float]:
def f(a: int, b: str, *c, d: Any = 10, **e) -> Optional[float]:
pass

c = Callable(f)
Expand Down

0 comments on commit 13ca5b5

Please sign in to comment.