blob: dfba650b9e847e7ede0c159e1a8b0771a2186ad7 [file] [log] [blame]
# Copyright 2015 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import os
import sys
sys.path.append(os.path.join(
os.path.dirname(__file__), '..', '..', 'other_animals', 'cat'))
from cat import cat_object # pylint: disable=import-error
class Dog(object):
def CreateEnemy(self):
return cat_object.Cat()