Skip to content

Commit

Permalink
links fixes (#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kamil A. Kaczmarek authored Jan 23, 2020
1 parent e60346b commit ca7d24b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[![Downloads](https://pepy.tech/badge/neptune-client/week)](https://pepy.tech/project/neptune-client/week)

[![PyPI version](https://badge.fury.io/py/neptune-client.svg)](https://badge.fury.io/py/neptune-client)
[![Build Status](https://travis-ci.org/neptune-ml/neptune-client.svg?branch=master)](https://travis-ci.org/neptune-ml/neptune-client)
[![Build Status](https://travis-ci.org/neptune-ai/neptune-client.svg?branch=master)](https://travis-ci.org/neptune-ai/neptune-client)

# Overview

Expand Down Expand Up @@ -156,6 +156,6 @@ If you get stuck, don't worry we are here to help.
The best order of communication is:

* [neptune documentation](https://docs.neptune.ai)
* [github issues](https://github.com/neptune-ml/neptune-client/issues)
* [github issues](https://github.com/neptune-ai/neptune-client/issues)
* [neptune community forum](https://community.neptune.ai/)
* [neptune community spectrum](https://spectrum.chat/neptune-community?tab=posts)
4 changes: 2 additions & 2 deletions neptune/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@


def init(project_qualified_name=None, api_token=None, proxies=None, backend=None):
"""Initialize `Neptune client library <https://github.com/neptune-ml/neptune-client>`_ to work with
"""Initialize `Neptune client library <https://github.com/neptune-ai/neptune-client>`_ to work with
specific project.
Authorize user, sets value of global variable ``project`` to :class:`~neptune.projects.Project` object
Expand Down Expand Up @@ -146,7 +146,7 @@ def init(project_qualified_name=None, api_token=None, proxies=None, backend=None


def set_project(project_qualified_name):
"""Setups `Neptune client library <https://github.com/neptune-ml/neptune-client>`_ to work with specific project.
"""Setups `Neptune client library <https://github.com/neptune-ai/neptune-client>`_ to work with specific project.
| Sets value of global variable ``project`` to :class:`~neptune.projects.Project` object
that can be used to create or list experiments, notebooks, etc.
Expand Down
2 changes: 1 addition & 1 deletion neptune/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class Uninitialized(NeptuneException):
def __init__(self):
super(Uninitialized, self).__init__(
"You must initialize neptune-client first. "
"For more information, please visit: https://github.com/neptune-ml/neptune-client#initialize-neptune")
"For more information, please visit: https://github.com/neptune-ai/neptune-client#initialize-neptune")


class FileNotFound(NeptuneException):
Expand Down

0 comments on commit ca7d24b

Please sign in to comment.