Good riddance jedi and rope

This commit is contained in:
Sumner Evans
2020-04-20 11:04:59 -06:00
parent b14d20b4cd
commit bd22954c96
4 changed files with 12 additions and 22 deletions

View File

@@ -1,4 +1,6 @@
{
"python.jediEnabled": false,
"python.analysis.openFilesOnly": false,
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.linting.enabled": true,

View File

@@ -8,10 +8,10 @@ docutils = "*"
flake8 = "*"
flake8-annotations = "*"
flake8-comprehensions = "*"
flake8-import-order = "*"
flake8-pep3101 = "*"
flake8-print = "*"
graphviz = "*"
jedi = "<0.16"
lxml = "*"
mypy = "*"
pytest = "*"
@@ -22,7 +22,6 @@ sphinx = "*"
sphinx-rtd-theme = "*"
termcolor = "*"
yapf = "*"
flake8-import-order = "*"
[packages]
sublime-music = {editable = true,extras = ["keyring"],path = "."}

17
Pipfile.lock generated
View File

@@ -1,7 +1,7 @@
{
"_meta": {
"hash": {
"sha256": "ada2f525e7d89500110d3063b4c271d60dd9e8a026ced396d5f3058b3e29e386"
"sha256": "71577f2c34a30d79301fb7a2c0c80e81d8bec18f7f7038b15ef38980f6c7bea7"
},
"pipfile-spec": 6,
"requires": {
@@ -509,14 +509,6 @@
],
"version": "==1.2.0"
},
"jedi": {
"hashes": [
"sha256:1349c1e8c107095a55386628bb3b2a79422f3a2cab8381e34ce19909e0cf5064",
"sha256:e909527104a903606dd63bea6e8e888833f0ef087057829b89a18364a856f807"
],
"index": "pypi",
"version": "==0.15.2"
},
"jinja2": {
"hashes": [
"sha256:89aab215427ef59c34ad58735269eb58b1a5808103067f7bb9d5836c651b3bb0",
@@ -643,13 +635,6 @@
],
"version": "==20.3"
},
"parso": {
"hashes": [
"sha256:158c140fc04112dc45bca311633ae5033c2c2a7b732fa33d0955bad8152a8dd0",
"sha256:908e9fae2144a076d72ae4e25539143d40b8e3eafbaeae03c1bfe226f4cdf12c"
],
"version": "==0.7.0"
},
"pluggy": {
"hashes": [
"sha256:15b2acde666561e1298d71b523007ed7364de07029219b604cf808bfa1c765b0",

View File

@@ -4,12 +4,16 @@ These are the API objects that are returned by Subsonic.
from dataclasses import dataclass, field
from datetime import datetime, timedelta
from enum import Enum
from typing import List, Optional, Sequence
from typing import List, Optional
from dataclasses_json import config, dataclass_json, DataClassJsonMixin, LetterCase
import dataclasses_json
from dataclasses_json import (
config,
dataclass_json,
DataClassJsonMixin,
LetterCase,
)
from dateutil import parser
from marshmallow import fields
from .. import api_objects as SublimeAPI