File tree Expand file tree Collapse file tree 5 files changed +5
-8
lines changed
repo_helper_github_interactive Expand file tree Collapse file tree 5 files changed +5
-8
lines changed Original file line number Diff line number Diff line change @@ -28,11 +28,11 @@ use_parentheses = true
2828remove_redundant_aliases = true
2929default_section = " THIRDPARTY"
3030known_third_party = [
31- " appdirs" ,
3231 " click" ,
3332 " consolekit" ,
3433 " domdf_python_tools" ,
3534 " github" ,
35+ " platformdirs" ,
3636 " repo_helper_github" ,
3737 " requests" ,
3838]
Original file line number Diff line number Diff line change 3636from typing import Optional , Tuple
3737
3838# 3rd party
39- import appdirs
4039import click
40+ import platformdirs
4141import repo_helper_github
4242from consolekit .input import prompt
4343from consolekit .terminal_colours import ColourTrilean
@@ -65,7 +65,7 @@ class History:
6565 file : PathPlus
6666
6767 def __init__ (self ):
68- self .file = PathPlus (appdirs .user_config_dir ("github" , "repo-helper" )) / "interactive.hist"
68+ self .file = PathPlus (platformdirs .user_config_dir ("github" , "repo-helper" )) / "interactive.hist"
6969
7070 def read (self ):
7171 """
Original file line number Diff line number Diff line change 1- appdirs >= 1.4.4
21click >= 7.1.2
32consolekit >= 0.8.2
43domdf-python-tools >= 2.4.0
4+ platformdirs >= 3.6.0
55repo-helper-github >= 0.5.0
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -120,9 +120,7 @@ commands = python3 -m perflint repo_helper_github_interactive {posargs}
120120basepython = python3.8
121121ignore_errors = True
122122changedir = {toxinidir}
123- deps =
124- mypy ==0.800
125- -r{toxinidir}/stubs.txt
123+ deps = mypy ==0.800
126124commands = mypy repo_helper_github_interactive {posargs}
127125
128126[testenv:pyup]
You can’t perform that action at this time.
0 commit comments