summaryrefslogtreecommitdiffstats
path: root/pym/_emerge/DependencyArg.py
blob: 1ba03bbc62ac1acb53d39447b376134b3786a79c (plain)
1
2
3
4
5
6
7
8
class DependencyArg(object):
	def __init__(self, arg=None, root_config=None):
		self.arg = arg
		self.root_config = root_config

	def __str__(self):
		return str(self.arg)