Skip to content
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

Add # dipdup: ignore at the beginning of type module to ignore it on init #82

Merged
merged 2 commits into from
Jul 8, 2021
Merged
Changes from 1 commit
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
6 changes: 6 additions & 0 deletions src/dipdup/codegen.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,12 @@ async def generate_types(self) -> None:
input_path = join(root, file)
output_path = join(types_root, f'{pascal_to_snake(name)}.py')

if exists(output_path):
with open(output_path) as type_file:
first_line = type_file.readline()
if first_line == '# dipdup: ignore\n':
droserasprout marked this conversation as resolved.
Show resolved Hide resolved
continue

if name == 'storage':
name = '_'.join([root.split('/')[-1], name])
if root.split('/')[-1] == 'parameter':
Expand Down