X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/f71db23824a25300618dd0625085ade8d2b3a7a8..ca679cd17738bc3d74bcbe72f0351a74cdb33543:/tests/data/comments2.py?ds=sidebyside diff --git a/tests/data/comments2.py b/tests/data/comments2.py index 32a2ab3..53d4881 100644 --- a/tests/data/comments2.py +++ b/tests/data/comments2.py @@ -1,3 +1,10 @@ +from com.my_lovely_company.my_lovely_team.my_lovely_project.my_lovely_component import ( + MyLovelyCompanyTeamProjectComponent # NOT DRY +) +from com.my_lovely_company.my_lovely_team.my_lovely_project.my_lovely_component import ( + MyLovelyCompanyTeamProjectComponent as component # DRY +) + # Please keep __all__ alphabetized within each category. __all__ = [ @@ -148,6 +155,13 @@ instruction() # output +from com.my_lovely_company.my_lovely_team.my_lovely_project.my_lovely_component import ( + MyLovelyCompanyTeamProjectComponent, # NOT DRY +) +from com.my_lovely_company.my_lovely_team.my_lovely_project.my_lovely_component import ( + MyLovelyCompanyTeamProjectComponent as component, # DRY +) + # Please keep __all__ alphabetized within each category. __all__ = [