Skip to content

Commit ad93dbb

Browse files
authored
Merge pull request #726 from cdce8p/misc
Formatting improvements
2 parents e889e58 + 16aa915 commit ad93dbb

File tree

29 files changed

+20
-32
lines changed

29 files changed

+20
-32
lines changed

.pre-commit-config.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
repos:
2+
- repo: https://github.com/pre-commit/pre-commit-hooks
3+
rev: v5.0.0
4+
hooks:
5+
- id: trailing-whitespace
6+
- id: end-of-file-fixer

SECURITY.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,3 @@ You can use the
2121
fix and disclosure.
2222

2323
If you are a tidelift subscriber, this is the preferred path
24-

doc/cmdline.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ Environment variables
227227
Set a username, password, and index URL for uploading packages.
228228
See :ref:`uploading packages with environment variables <upload_envvars>`
229229
for more information.
230-
230+
231231
Token-based upload to PyPI is supported. To upload using a PyPI token,
232232
set ``FLIT_USERNAME`` to ``__token__``, and ``FLIT_PASSWORD`` to the
233233
token value.
@@ -270,4 +270,3 @@ Environment variables
270270

271271
`The SOURCE_DATE_EPOCH specification
272272
<https://reproducible-builds.org/specs/source-date-epoch/>`__
273-

doc/development.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,3 @@ To run the tests in separate environments for each available Python version::
2323
To run the tests in your current environment, run::
2424

2525
pytest
26-

doc/index.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,3 @@ Indices and tables
3131

3232
* :ref:`genindex`
3333
* :ref:`search`
34-

flit/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from __future__ import absolute_import
1+
from __future__ import absolute_import
22

33
from . import main
44

flit/logo.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
logo = """
5-
._ ._
5+
._ ._
66
```. ```. .--.______
77
`. `-. `. / °,-—´
88
`. `~-.>.' /
@@ -12,7 +12,7 @@
1212
/r_,.´| | | |
1313
,' `/ |—— | | |
1414
.´ ,'/ | |__ | |
15-
.´ / . /
15+
.´ / . /
1616
'__/|/ V {version}
1717
1818
"""

flit/sdist.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,4 +244,3 @@ def make_setup_py(self):
244244
url=self.metadata.home_page,
245245
extra='\n '.join(extra),
246246
).encode('utf-8')
247-

flit/validate.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,4 +298,3 @@ def validate_config(config_info):
298298
for p in problems:
299299
log.error(p)
300300
return problems
301-

flit/wheel.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,3 @@ def make_wheel_in(ini_path, wheel_directory, editable=False):
99

1010
class WheelBuilder(core_wheel.WheelBuilder):
1111
pass
12-

0 commit comments

Comments
 (0)