We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 099f620 commit 9a2c6efCopy full SHA for 9a2c6ef
espresso/mx.espresso/import_order.py
@@ -64,10 +64,9 @@ def verify_order(path, prefix_order):
64
65
for prefix in prefix_order:
66
if prefix:
67
- # If prefix is "abc", add "import static abc"
68
- static_prefixes.append(STATIC_PREFIX + prefix + '.')
69
# If prefix is "abc", add "import abc"
70
regular_prefixes.append(REGULAR_PREFIX + prefix + '.')
+ # Eclipse formatting does not enforce prefix order for static imports.
71
else:
72
# Empty prefix means everything will match.
73
# Empty prefix is added manually below.
0 commit comments