File tree 3 files changed +5
-4
lines changed 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 6
6
7
7
8
8
import os
9
+ import sys
9
10
from logging import DEBUG
10
11
from pathlib import Path
11
12
12
13
from dotenv import load_dotenv
13
14
14
15
project_dir = Path (__file__ ).parent .parent
15
-
16
- import sys
17
16
sys .path .insert (0 , str (project_dir ))
18
17
19
18
from yfpy import Data
42
41
# create YFPY Data instance for saving/loading data
43
42
data = Data (data_dir )
44
43
44
+
45
45
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
46
46
# VARIABLE SETUP # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
47
47
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
Original file line number Diff line number Diff line change @@ -11,6 +11,8 @@ per-file-ignores =
11
11
# imported but unused
12
12
__init__.py: F401
13
13
data.py: F401
14
+ # add to PYTHONPATH before imports
15
+ quickstart.py: E402
14
16
exclude =
15
17
__pycache__,
16
18
.git,
Original file line number Diff line number Diff line change 2
2
import shutil
3
3
import subprocess
4
4
from pathlib import Path
5
- from ruamel .yaml import YAML
6
- from ruamel .yaml .comments import CommentedMap
7
5
8
6
import setuptools
7
+ from ruamel .yaml import YAML
9
8
10
9
from VERSION_PYTHON import __version_minimum_python__ , __version_maximum_python__
11
10
You can’t perform that action at this time.
0 commit comments