Skip to content

Commit

Permalink
Use a from ... import per recommendation
Browse files Browse the repository at this point in the history
  • Loading branch information
meatballhat committed May 15, 2020
1 parent ef957ea commit 32413cb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions conftest.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import os.path
import sys

from os.path import abspath, dirname

HERE = os.path.dirname(os.path.abspath(__file__))

HERE = dirname(abspath(__file__))
sys.path.insert(0, HERE)

0 comments on commit 32413cb

Please sign in to comment.