Skip to content

Commit

Permalink
chore: docs build and lint fixes (#22)
Browse files Browse the repository at this point in the history
* chore: lint fixes

* chore: pin sphinx to the 2.x versions
  • Loading branch information
crwilcox committed Apr 7, 2020
1 parent e7b5fc9 commit c25e5ed
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion noxfile.py
Expand Up @@ -140,7 +140,7 @@ def docs(session):
"""Build the docs for this library."""

session.install("-e", ".")
session.install("sphinx", "alabaster", "recommonmark")
session.install("sphinx<3.0.0", "alabaster", "recommonmark")

shutil.rmtree(os.path.join("docs", "_build"), ignore_errors=True)
session.run(
Expand Down
1 change: 0 additions & 1 deletion tests/system/test_system.py
Expand Up @@ -14,7 +14,6 @@

import datetime
import os
import string
import unittest

import requests
Expand Down
1 change: 0 additions & 1 deletion tests/system/utils/populate_datastore.py
Expand Up @@ -75,7 +75,6 @@ def add_large_character_entities(client=None):
page_query = client.query(kind=KIND, namespace=NAMESPACE)

def put_objects(count):
remaining = count
current = 0

# Can only do 500 operations in a transaction with an overall
Expand Down

0 comments on commit c25e5ed

Please sign in to comment.