Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
nielsvanspauwen committed Jun 18, 2023
1 parent e2ab34c commit 08029c3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
from setuptools import setup, find_packages

with open('requirements.txt') as f:
with open('requirements.txt', 'r', encoding='utf-8') as f:
requirements = f.read().splitlines()

with open('README.md') as f:
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()

setup(
Expand Down Expand Up @@ -36,4 +36,4 @@
'pystructurizr = pystructurizr.cli:cli'
]
},
)
)

0 comments on commit 08029c3

Please sign in to comment.