Skip to content

Commit bad4567

Browse files
authored
README: typo in the example code
1 parent f4703f8 commit bad4567

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ import rootpath
138138
rootpath.append()
139139

140140
# 2. will import correctly without errors no matter if imported/executed from same path or any other system path - which is not true for the native Python 3 relative import
141-
import rootpath.utils.say as say
141+
import foo.utils.say as say
142142

143143
def bar():
144144
say()
@@ -156,7 +156,7 @@ import rootpath
156156
rootpath.append()
157157

158158
# 2. will import correctly without errors no matter if imported/executed from same path or any other system path - which is not true for the native Python 3 relative import
159-
import rootpath.utils.say as say
159+
import foo.utils.say as say
160160

161161
def baz():
162162
hello()

0 commit comments

Comments
 (0)