Use os.path directly rather than sometimes importing it separately.
(imported from commit 48486c4ea64d02a15faeebb0f490d31e9b113d62)
This commit is contained in:
parent
491d21302c
commit
6894453ab5
14 changed files with 38 additions and 40 deletions
|
@ -1,13 +1,13 @@
|
|||
#!/usr/bin/env python
|
||||
import sys
|
||||
from os import path
|
||||
import os
|
||||
import logging
|
||||
import time
|
||||
import simplejson
|
||||
import subprocess
|
||||
import unicodedata
|
||||
|
||||
sys.path.append(path.join(path.dirname(__file__), '..', 'api'))
|
||||
sys.path.append(os.path.join(os.path.dirname(__file__), '..', 'api'))
|
||||
import zulip
|
||||
|
||||
zulip_client = zulip.Client()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue