Skip to content

Commit

Permalink
style: fix linter warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
CaselIT committed Jul 13, 2024
1 parent 1082600 commit ed70832
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
import io
import os
from os import path
import re
import platform
import re

from setuptools import setup

Expand All @@ -17,7 +17,7 @@
HAS_CYTHON = False

DISABLE_EXTENSION = bool(os.environ.get('FALCON_DISABLE_CYTHON'))
IS_CPYTHON = platform.python_implementation() == "CPython"
IS_CPYTHON = platform.python_implementation() == 'CPython'

MYDIR = path.abspath(os.path.dirname(__file__))

Expand Down

0 comments on commit ed70832

Please sign in to comment.