Skip to content

Commit

Permalink
Merge pull request #3 from mdrachuk/sys-path-fix
Browse files Browse the repository at this point in the history
Add cwd to sys path
  • Loading branch information
mdrachuk committed Aug 21, 2019
2 parents c93072b + c1b143b commit f107bba
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cv.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@
"""
from __future__ import annotations

__version__ = '1.0.0.dev4'
__version__ = '1.0.0.dev5'

import os
import sys
from argparse import ArgumentParser
from dataclasses import dataclass
Expand Down Expand Up @@ -82,4 +83,5 @@ def main(args):


if __name__ == '__main__':
sys.path.append(os.getcwd())
main(sys.argv[1:])

0 comments on commit f107bba

Please sign in to comment.