core_shell_microgelscostrafo411magnetic_modelrelease_v0.94release_v0.95ticket-1257-vesicle-productticket_1156ticket_1265_superballticket_822_more_unit_tests
Last change
on this file since a217f7d was
3c56da87,
checked in by Paul Kienzle <pkienzle@…>, 10 years ago
|
lint cleanup
|
-
Property mode set to
100644
|
File size:
347 bytes
|
Line | |
---|
1 | from astroid import MANAGER |
---|
2 | from astroid import nodes |
---|
3 | |
---|
4 | def register(linter): |
---|
5 | MANAGER.register_transform(nodes.Module, transform) |
---|
6 | |
---|
7 | def transform(module): |
---|
8 | #print("processing",module.name) |
---|
9 | if module.name.startswith('numpy'): |
---|
10 | if module.name == 'numpy': import numpy |
---|
11 | elif module.name == 'numpy.random': import numpy.random |
---|
12 | |
---|
Note: See
TracBrowser
for help on using the repository browser.