Skip to content

Commit 382b5e4

Browse files
authored
chore(docs): Remove invalid emails and non-maintainers. (#208)
* remove nonexistent emails and putting contact@dgraph[dot]io as maintainer.
1 parent 146f0ad commit 382b5e4

14 files changed

+22
-22
lines changed

pydgraph/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
from pydgraph.proto import api_pb2 as api
2222

2323
__author__ = 'Mohit Ranka <[email protected]>'
24-
__maintainer__ = 'Martin Martinez Rivera <martinmr@dgraph.io>'
24+
__maintainer__ = 'Dgraph Labs <contact@dgraph.io>'
2525
__version__ = VERSION
2626
__status__ = 'development'
2727

pydgraph/client_stub.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
except ImportError:
2525
from urlparse import urlparse
2626

27-
__author__ = 'Garvit Pahal <[email protected]>'
28-
__maintainer__ = 'Martin Martinez Rivera <martinmr@dgraph.io>'
27+
__author__ = 'Garvit Pahal'
28+
__maintainer__ = 'Dgraph Labs <contact@dgraph.io>'
2929
__version__ = VERSION
3030
__status__ = 'development'
3131

pydgraph/errors.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616

1717
from pydgraph.meta import VERSION
1818

19-
__author__ = 'Garvit Pahal <[email protected]>'
20-
__maintainer__ = 'Martin Martinez Rivera <martinmr@dgraph.io>'
19+
__author__ = 'Garvit Pahal'
20+
__maintainer__ = 'Dgraph Labs <contact@dgraph.io>'
2121
__version__ = VERSION
2222
__status__ = 'development'
2323

pydgraph/txn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
from pydgraph.proto import api_pb2 as api
2323

2424
__author__ = 'Shailesh Kochhar <[email protected]>'
25-
__maintainer__ = 'Martin Martinez Rivera <martinmr@dgraph.io>'
25+
__maintainer__ = 'Dgraph Labs <contact@dgraph.io>'
2626
__version__ = VERSION
2727
__status__ = 'development'
2828

pydgraph/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from pydgraph.meta import VERSION
2121

2222
__author__ = 'Shailesh Kochhar <[email protected]>'
23-
__maintainer__ = 'Martin Martinez Rivera <martinmr@dgraph.io>'
23+
__maintainer__ = 'Dgraph Labs <contact@dgraph.io>'
2424
__version__ = VERSION
2525
__status__ = 'development'
2626

tests/helper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414

1515
"""Utilities used by tests."""
1616

17-
__author__ = 'Garvit Pahal <[email protected]>'
18-
__maintainer__ = 'Martin Martinez Rivera <martinmr@dgraph.io>'
17+
__author__ = 'Garvit Pahal'
18+
__maintainer__ = 'Dgraph Labs <contact@dgraph.io>'
1919

2020
import os
2121
import time

tests/test_acct_upsert.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"""Tests to verify upsert directive."""
1616

1717
__author__ = 'Shailesh Kochhar <[email protected]>'
18-
__maintainer__ = 'Martin Martinez Rivera <martinmr@dgraph.io>'
18+
__maintainer__ = 'Dgraph Labs <contact@dgraph.io>'
1919

2020
import unittest
2121
import logging

tests/test_async.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414

1515
"""Tests to verify async client methods."""
1616

17-
__author__ = 'Martin Martinez Rivera <[email protected]>'
18-
__maintainer__ = 'Martin Martinez Rivera <martinmr@dgraph.io>'
17+
__author__ = 'Martin Martinez Rivera'
18+
__maintainer__ = 'Dgraph Labs <contact@dgraph.io>'
1919

2020
import json
2121
import pydgraph

tests/test_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414

1515
"""Tests construction of Dgraph client."""
1616

17-
__author__ = 'Garvit Pahal <[email protected]>'
18-
__maintainer__ = 'Martin Martinez Rivera <martinmr@dgraph.io>'
17+
__author__ = 'Garvit Pahal'
18+
__maintainer__ = 'Dgraph Labs <contact@dgraph.io>'
1919

2020
import unittest
2121
import pydgraph

tests/test_client_stub.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414

1515
"""Tests client stub."""
1616

17-
__author__ = 'Garvit Pahal <[email protected]>'
18-
__maintainer__ = 'Martin Martinez Rivera <martinmr@dgraph.io>'
17+
__author__ = 'Garvit Pahal'
18+
__maintainer__ = 'Dgraph Labs <contact@dgraph.io>'
1919

2020
import unittest
2121
import sys

0 commit comments

Comments
 (0)