Skip to content

Commit

Permalink
Add documentation examples for consider-using-from-import. (#6697)
Browse files Browse the repository at this point in the history
  • Loading branch information
mbyrnepr2 authored May 25, 2022
1 parent d8dbac0 commit a283bc4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions doc/data/messages/c/consider-using-from-import/bad.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
import os.path as path # [consider-using-from-import]
1 change: 1 addition & 0 deletions doc/data/messages/c/consider-using-from-import/good.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from os import path

0 comments on commit a283bc4

Please sign in to comment.