We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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.
The text was updated successfully, but these errors were encountered:
yes that sounds okay to me! would be happy to merge if you submit a pr :)
Sorry, something went wrong.
No branches or pull requests
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.
The text was updated successfully, but these errors were encountered: