2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-04-28 19:46:46 +00:00

PEP fixes

This commit is contained in:
Oliver Walters 2019-08-14 13:15:36 +10:00
parent a7bf031e4a
commit 0a97bc1b40

View File

@ -17,10 +17,12 @@ import logging
import tempfile import tempfile
import yaml import yaml
def eprint(*args, **kwargs): def eprint(*args, **kwargs):
""" Print a warning message to stderr """ """ Print a warning message to stderr """
print(*args, file=sys.stderr, **kwargs) print(*args, file=sys.stderr, **kwargs)
# Build paths inside the project like this: os.path.join(BASE_DIR, ...) # Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))