Skip to content

Commit

Permalink
🚨 Fix linter warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
albmarin committed Feb 2, 2020
1 parent 2d053bb commit 1c717d8
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 8 deletions.
8 changes: 2 additions & 6 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,5 @@ install:
test_script:
- "%PYTHON%\\Scripts\\tox.exe"

deploy:
- provider: Environment
name: production
on:
branch: master
APPVEYOR_REPO_TAG: true
deploy_script:
- ps: IF ($env:APPVEYOR_REPO_TAG -eq "true") { %PYTHON%\\Scripts\\flit.exe publish }
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ exclude = '''


[pycalver]
current_version = "v202002.0001-alpha"
current_version = "v202002.0001-beta"
version_pattern = "{pycalver}"
commit = true
tag = true
Expand Down
27 changes: 26 additions & 1 deletion winpath/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
"""Retrieves common Windows folders as Unicode strings"""

from .main import (
Expand All @@ -24,4 +25,28 @@
get_recent,
)

__version__ = "201902.1b0"
__version__ = "202002.1b0"

__all__ = [
get_local_appdata,
get_appdata,
get_desktop,
get_programs,
get_admin_tools,
get_common_admin_tools,
get_common_appdata,
get_common_documents,
get_my_documents,
get_cookies,
get_history,
get_internet_cache,
get_my_pictures,
get_personal,
get_program_files,
get_program_files_common,
get_system,
get_windows,
get_favorites,
get_startup,
get_recent,
]

0 comments on commit 1c717d8

Please sign in to comment.