File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -148,6 +148,8 @@ def _determine_local_import_names(start_dir: str) -> list[str]:
148148
149149@nox .session
150150def lint (session : nox .sessions .Session ) -> None :
151+
152+ print ("✨ Original noxfile" )
151153 if not TEST_CONFIG ["enforce_type_hints" ]:
152154 session .install ("flake8" , "flake8-import-order" )
153155 else :
Original file line number Diff line number Diff line change @@ -148,12 +148,13 @@ def _determine_local_import_names(start_dir: str) -> list[str]:
148148
149149@nox .session
150150def lint (session : nox .sessions .Session ) -> None :
151+
152+ print ("✨ Custom noxfile interception" )
151153 if not TEST_CONFIG ["enforce_type_hints" ]:
152154 session .install ("flake8" , "flake8-import-order" )
153155 else :
154156 session .install ("flake8" , "flake8-import-order" , "flake8-annotations" )
155157
156- print ("✨ Custom noxfile interception" )
157158 local_names = _determine_local_import_names ("." )
158159 args = FLAKE8_COMMON_ARGS + [
159160 "--application-import-names" ,
You can’t perform that action at this time.
0 commit comments