Skip to content

Commit 27edbe7

Browse files
committed
Replaced double quotes w/ single quotes
1 parent b72a168 commit 27edbe7

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

remove-json-keys/utils/bump.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
project = sns(**pyproject['project'])
1313

1414
def update_changelog_url():
15-
ver_tag = f"{project.name}-{project.version}"
15+
ver_tag = f'{project.name}-{project.version}'
1616
changelog_url = f'https://github.com/adamlui/python-utils/releases/tag/{ver_tag}'
1717
log.data(f'Generated changelog URL: {changelog_url}')
1818

@@ -26,6 +26,6 @@ def update_changelog_url():
2626
pyproject['project'] = vars(project) # update og dict for dumping
2727
with open(pyproject_path, 'wb') as file : tomli_w.dump(pyproject, file)
2828

29-
log.success(f"Bumped changelog URL ver tag to [{ver_tag}]!")
29+
log.success(f'Bumped changelog URL ver tag to [{ver_tag}]!')
3030

3131
update_changelog_url()

translate-messages/utils/bump.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
project = sns(**pyproject['project'])
1313

1414
def update_changelog_url():
15-
ver_tag = f"{project.name}-{project.version}"
15+
ver_tag = f'{project.name}-{project.version}'
1616
changelog_url = f'https://github.com/adamlui/python-utils/releases/tag/{ver_tag}'
1717
log.data(f'Generated changelog URL: {changelog_url}')
1818

@@ -26,6 +26,6 @@ def update_changelog_url():
2626
pyproject['project'] = vars(project) # update og dict for dumping
2727
with open(pyproject_path, 'wb') as file : tomli_w.dump(pyproject, file)
2828

29-
log.success(f"Bumped changelog URL ver tag to [{ver_tag}]!")
29+
log.success(f'Bumped changelog URL ver tag to [{ver_tag}]!')
3030

3131
update_changelog_url()

0 commit comments

Comments
 (0)