Skip to content

Support running plugin without installing betterproto #91

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion betterproto/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,17 @@

import itertools
import os.path
import pathlib
import re
import stringcase
import sys
import textwrap
from typing import List

sys.path.append(str(pathlib.Path(__file__).parent.parent)) # add betterproto to path
import betterproto
from betterproto.casing import safe_snake_case
from betterproto.compile.importing import get_ref_type
import betterproto

try:
# betterproto[compiler] specific dependencies
Expand Down