Skip to content

Commit 7b0b37c

Browse files
committed
Clean up comments
1 parent 95f2aa4 commit 7b0b37c

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

.github/workflows/lint.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# GitHub Action Workflow enforcing our code style.
1+
# GitHub Action workflow enforcing our code style.
22

33
name: Lint
44

@@ -9,6 +9,7 @@ on:
99
branches:
1010
- main
1111
pull_request:
12+
1213
# Brand new concurrency setting! This ensures that not more than one run can be triggered for the same commit.
1314
# It is useful for pull requests coming from the main repository since both triggers will match.
1415
concurrency: lint-${{ github.sha }}

.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Pre-commit setup
1+
# Pre-commit configuration.
22
# See https://github.com/python-discord/code-jam-template/tree/main#pre-commit-run-linting-before-committing
33

44
repos:

samples/Pipfile

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Sample Pipfile.
2+
13
[[source]]
24
url = "https://pypi.org/simple"
35
verify_ssl = true

samples/pyproject.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
# Sample poetry configuration.
2+
13
[tool.poetry]
24
name = "Name"
35
version = "0.1.0"
4-
description = ""
6+
description = "Description"
57
authors = ["Author 1 <email@mail.com>"]
68
license = "MIT"
79

0 commit comments

Comments
 (0)