summaryrefslogtreecommitdiff
path: root/gitdb/typ.py
diff options
context:
space:
mode:
Diffstat (limited to 'gitdb/typ.py')
-rw-r--r--gitdb/typ.py12
1 files changed, 4 insertions, 8 deletions
diff --git a/gitdb/typ.py b/gitdb/typ.py
index e84dd24..bc7ba58 100644
--- a/gitdb/typ.py
+++ b/gitdb/typ.py
@@ -4,11 +4,7 @@
# the New BSD License: http://www.opensource.org/licenses/bsd-license.php
"""Module containing information about types known to the database"""
-#{ String types
-
-str_blob_type = "blob"
-str_commit_type = "commit"
-str_tree_type = "tree"
-str_tag_type = "tag"
-
-#} END string types
+str_blob_type = b'blob'
+str_commit_type = b'commit'
+str_tree_type = b'tree'
+str_tag_type = b'tag'