From 7865d7a37562be8b0af9b3668043d8c08138814b Mon Sep 17 00:00:00 2001 From: Hung Nguyen Viet Date: Fri, 3 Feb 2017 21:02:18 +0700 Subject: [PATCH] Add clint to import paths --- examples/get_each_args.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/examples/get_each_args.py b/examples/get_each_args.py index 1f1e5a5..c7ec6f4 100755 --- a/examples/get_each_args.py +++ b/examples/get_each_args.py @@ -1,6 +1,11 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- +import sys +import os + +sys.path.insert(0, os.path.abspath('..')) + from clint.arguments import Args from clint.textui import puts, colored