core_shell_microgelscostrafo411magnetic_modelrelease_v0.94release_v0.95ticket-1257-vesicle-productticket_1156ticket_1265_superballticket_822_more_unit_tests
Last change
on this file since fdc538a was
63b32bb,
checked in by Paul Kienzle <pkienzle@…>, 10 years ago
|
lint cleaning
|
-
Property mode set to
100644
|
File size:
348 bytes
|
Rev | Line | |
---|
[3c56da87] | 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'): |
---|
[63b32bb] | 10 | if module.name == 'numpy': import numpy |
---|
[3c56da87] | 11 | elif module.name == 'numpy.random': import numpy.random |
---|
| 12 | |
---|
Note: See
TracBrowser
for help on using the repository browser.