This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Mithil
Recipients Mithil
Date 2020-10-18.22:15:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1603059340.5.0.993614197366.issue42075@roundup.psfhosted.org>
In-reply-to
Content
The default format prints a lot of details like filename, line number, and the source code on that line. A particular case where the warn message is written on the next line like -
warn(
   "Message here")
Will only print warn( as the source code and not the entire block.
My concern is, can this formatting be less detailed by default. Or, can this format be freely changed in a project A without worrying about affecting the global usage in any other project B that imports it.
Or at the very least, can this be made to print the entire block of code and not just the one line, because that makes it very confusing for the user.

More takes on the issue here - https://github.com/PyCQA/isort/issues/1568
History
Date User Action Args
2020-10-18 22:15:40Mithilsetrecipients: + Mithil
2020-10-18 22:15:40Mithilsetmessageid: <1603059340.5.0.993614197366.issue42075@roundup.psfhosted.org>
2020-10-18 22:15:40Mithillinkissue42075 messages
2020-10-18 22:15:40Mithilcreate