summaryrefslogtreecommitdiff
path: root/gitdb/object/submodule.py
blob: 77669b399b2707a0a655b45d36c76e6a7415c99b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
from base import IndexObject

class Submodule(IndexObject):
	"""Dummy type representing submodules. At some point an implemenation might be add
	( it currently is located in GitPython )"""
	
	# this is a bogus type for base class compatability
	type = 'submodule'
	# this type doesn't really have a type id
	type_id = 0