Returning bitmessageqt package back to normal #1280
No reviewers
Labels
No Label
bug
build
dependencies
developers
documentation
duplicate
enhancement
formatting
invalid
legal
mobile
obsolete
packaging
performance
protocol
question
refactoring
regression
security
test
translation
usability
wontfix
No Milestone
No project
No Assignees
1 Participants
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: Bitmessage/PyBitmessage-2024-12-17#1280
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "bitmessageqt-normalize"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
I reverted all changes to init in this commit.
write imports first and then from statements later.
Please maintain all the imports in a alphabetic order
There is still a problems with import order in this package. Changed import statements is one of the reasons why the previous commit broke everything.
ok. but may I know how come these order break the workflow, so that I can ignore this for future purpose.
It seems still nobody knows it exactly. Changing the order sometimes can lead to circular import issue, especially in modules like
bitmessagemain
. That's why for exampledepends
imports standard pythonlogging
instead of usingdebug
.@omkar1117, nevertheless I sorted the imports from standard library. Now I should test it locally and then maybe squash.
Squashed to one commit.