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

Explicit print statement in code #5

Open
SqlAndWood opened this issue Dec 1, 2022 · 1 comment
Open

Explicit print statement in code #5

SqlAndWood opened this issue Dec 1, 2022 · 1 comment

Comments

@SqlAndWood
Copy link

Great capability, love the code.

Would it be possible to provide a bool input to prevent print statements from being displayed?

for example: within module.py:

def write_to_file(self, filename='output.txt', display_output: bool = False):
self.filename = filename
text_file = open(self.filename, "w")
text_file.write(self.res)
text_file.close()
if display_output:
print(f'written to {self.filename}')

Thanks for the consideration.

@nabsabraham
Copy link
Owner

yes that sounds okay to me! would be happy to merge if you submit a pr :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants