From 175d2230f0aa93d7d24fa7f9d581695f14b24af3 Mon Sep 17 00:00:00 2001 From: Benjamin Pelletier Date: Sun, 16 Oct 2022 18:37:10 -0700 Subject: [PATCH] Make doc links absolute for correct access via PyPI (#1) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8caa33d..3202cea 100644 --- a/README.md +++ b/README.md @@ -12,4 +12,4 @@ data: MyData = ImplicitDict.parse({'foo': 'asdf', 'bar': 1}, MyData) assert json.dumps(data) == '{"foo": "asdf", "bar": 1}' ``` -See [class documentation for `ImplicitDict`](src/implicitdict/__init__.py) and [test_normal_usage.py](tests/test_normal_usage.py) for more information. +See [class documentation for `ImplicitDict`](https://github.com/interuss/implicitdict/blob/main/src/implicitdict/__init__.py) and [test_normal_usage.py](https://github.com/interuss/implicitdict/blob/main/tests/test_normal_usage.py) for more information.