Method: pylint.utils.utils.IsortDriver.place_module
Calls: 1191, Exceptions: 0, Paths: 1Back
Path 1: 1191 calls (1.0)
'typing' (153) 'os' (96) 'collections' (86) '__future__' (52) 'sys' (49) 'abc' (37) 'dataclasses' (29) 'pylint' (28) 'logging' (25) 'enum' (23)
'STDLIB' (726) 'THIRDPARTY' (319) 'LOCALFOLDER' (77) 'FUTURE' (52) 'FIRSTPARTY' (17)
1def place_module(self, package: str) -> str:
2 if HAS_ISORT_5:
3 return isort.api.place_module(package, self.isort5_config)
4 return self.isort4_obj.place_module(package) # type: ignore[no-any-return]