Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
grunweg committed May 10, 2024
1 parent fce04ec commit 1f7eaff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/lint-style.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@

# TODO: This is adapted from the linter for mathlib3. It should be rewritten in Lean.

import enum
from enum import Enum
from pathlib import Path
import re
import shutil
import sys


class Error(enum):
class Error(Enum):
'''Possible errors raised by this script.'''
ERR_COP = 0 # copyright header
ERR_MOD = 2 # module docstring
Expand Down

0 comments on commit 1f7eaff

Please sign in to comment.