Skip to content

Commit

Permalink
Merge pull request #14 from hitblast/actions/ruff
Browse files Browse the repository at this point in the history
馃帹 Automated formatting errors fix
  • Loading branch information
hitblast committed Dec 15, 2023
2 parents 56f2a27 + 4a64e7e commit aba116e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
# Defiining the setup parameters.
here = os.path.abspath(os.path.dirname(__file__))

with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as f:
long_description = "\n" + f.read()
with codecs.open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = '\n' + f.read()

with codecs.open(os.path.join(here, 'requirements.txt'), encoding="utf-8") as f:
with codecs.open(os.path.join(here, 'requirements.txt'), encoding='utf-8') as f:
lines = (x.strip() for x in f.read().splitlines())
requirements = [x for x in lines if x and not x.startswith("#")]
requirements = [x for x in lines if x and not x.startswith('#')]

VERSION = '2023.9.4'
DESCRIPTION = 'An asynchronous Python wrapper for the Minecraft Server Status API.'
Expand Down

0 comments on commit aba116e

Please sign in to comment.