Skip to content

Commit

Permalink
Fix stray commas.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 405924131
Change-Id: I473a233002ece2f068e3f00d1b7f30bd1c4c9949
  • Loading branch information
MarkDaoust authored and tensorflower-gardener committed Oct 27, 2021
1 parent 9eb5fdf commit d1bb2e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tensorflow/tools/docs/base_dir.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ def get_base_dirs_and_prefixes(code_url_prefix):

if distutils.version.LooseVersion(tf.__version__) >= "2.6":
if "dev" in tf.__version__:
keras_url_prefix = f"https://github.com/keras-team/keras/tree/master/keras",
keras_url_prefix = "https://github.com/keras-team/keras/tree/master/keras"
else:
keras_url_prefix = f"https://github.com/keras-team/keras/tree/v{keras.__version__}/keras",
keras_url_prefix = f"https://github.com/keras-team/keras/tree/v{keras.__version__}/keras"

code_url_prefixes = (
code_url_prefix,
Expand Down

0 comments on commit d1bb2e1

Please sign in to comment.