Skip to content

Commit

Permalink
Remove UTF-8 headers in Python files
Browse files Browse the repository at this point in the history
The `# -*- coding: utf-8 -*-` headers are useful for Python 2, but
aren't needed for Python 3 which is the only supported version. Let's
drop these headers.
  • Loading branch information
adrienverge committed Dec 1, 2023
1 parent 2332f27 commit c2b476a
Show file tree
Hide file tree
Showing 7 changed files with 0 additions and 7 deletions.
1 change: 0 additions & 1 deletion localstripe/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2017 Adrien Vergé
#
# This program is free software: you can redistribute it and/or modify
Expand Down
1 change: 0 additions & 1 deletion localstripe/__main__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2017 Adrien Vergé
#
# This program is free software: you can redistribute it and/or modify
Expand Down
1 change: 0 additions & 1 deletion localstripe/errors.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2017 Adrien Vergé
#
# This program is free software: you can redistribute it and/or modify
Expand Down
1 change: 0 additions & 1 deletion localstripe/resources.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2017 Adrien Vergé
#
# This program is free software: you can redistribute it and/or modify
Expand Down
1 change: 0 additions & 1 deletion localstripe/server.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2017 Adrien Vergé
#
# This program is free software: you can redistribute it and/or modify
Expand Down
1 change: 0 additions & 1 deletion localstripe/webhooks.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2018 Adrien Vergé
#
# This program is free software: you can redistribute it and/or modify
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2017 Adrien Vergé
#
# This program is free software: you can redistribute it and/or modify
Expand Down

0 comments on commit c2b476a

Please sign in to comment.