diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 0000000..04ba37a --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,28 @@ +name: lint + +on: + push: + paths: + - '**.py' + - 'requirements.txt' + pull_request: + paths: + - '**.py' + - 'requirements.txt' + +jobs: + + pylint: + runs-on: ubuntu-latest + container: + image: python:3.11-slim + steps: + - uses: actions/checkout@v3 + - name: Install deps + run: | + pip install -r requirements.txt + pip install pylint + + - name: Lint + run: | + pylint -E --fail-on=E server.py diff --git a/server.py b/server.py index 5c30d50..32f60c3 100755 --- a/server.py +++ b/server.py @@ -33,10 +33,7 @@ def geoip_lookup_continent(ip): if not reader: return - try: - geo = reader.get(ip) - except geoip2.errors.GeoIP2Error: - return + geo = reader.get(ip) if geo and "continent" in geo: return geo["continent"]["code"]