Skip to content
This repository was archived by the owner on Sep 2, 2022. It is now read-only.

Commit aa0e9ff

Browse files
authored
Merge pull request #6 from apilytics/fix-tag-message
2 parents 6e9f83d + 8f16571 commit aa0e9ff

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

.github/workflows/cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
with:
5757
add: '["pyproject.toml", "CHANGELOG.md"]'
5858
message: 'Release ${{ github.event.inputs.version }}'
59-
tag: 'v${{ github.event.inputs.version }} --annotate --message=""'
59+
tag: 'v${{ github.event.inputs.version }} --annotate --file <(true)'
6060
default_author: github_actions
6161

6262
- name: "Create a GitHub release"

apilytics/core.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@
44
import types
55
import urllib.error
66
import urllib.request
7+
from typing import ClassVar, Optional, Type
78

89
__all__ = ["ApilyticsSender"]
910

10-
from typing import ClassVar, Optional, Type
11-
1211

1312
class ApilyticsSender:
1413
"""

0 commit comments

Comments
 (0)