Skip to content

Commit

Permalink
Clean up comments
Browse files Browse the repository at this point in the history
  • Loading branch information
lemonyte committed Apr 4, 2024
1 parent 95f2aa4 commit 7b0b37c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# GitHub Action Workflow enforcing our code style.
# GitHub Action workflow enforcing our code style.

name: Lint

Expand All @@ -9,6 +9,7 @@ on:
branches:
- main
pull_request:

# Brand new concurrency setting! This ensures that not more than one run can be triggered for the same commit.
# It is useful for pull requests coming from the main repository since both triggers will match.
concurrency: lint-${{ github.sha }}
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Pre-commit setup
# Pre-commit configuration.
# See https://github.com/python-discord/code-jam-template/tree/main#pre-commit-run-linting-before-committing

repos:
Expand Down
2 changes: 2 additions & 0 deletions samples/Pipfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Sample Pipfile.

[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
Expand Down
4 changes: 3 additions & 1 deletion samples/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# Sample poetry configuration.

[tool.poetry]
name = "Name"
version = "0.1.0"
description = ""
description = "Description"
authors = ["Author 1 <email@mail.com>"]
license = "MIT"

Expand Down

0 comments on commit 7b0b37c

Please sign in to comment.