File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 18
18
set -eux
19
19
sudo apt update
20
20
sudo apt install python3-setuptools
21
- sudo pip3 install black==22.3.0 flake8
21
+ sudo pip3 install black flake8
22
22
23
23
- name : Check black
24
24
run : black --check operators
Original file line number Diff line number Diff line change 15
15
16
16
17
17
class CheckFailed (Exception ):
18
- """ Raise this exception if one of the checks in main fails. """
18
+ """Raise this exception if one of the checks in main fails."""
19
19
20
20
def __init__ (self , msg , status_type = None ):
21
21
super ().__init__ ()
Original file line number Diff line number Diff line change 11
11
12
12
13
13
class CheckFailed (Exception ):
14
- """ Raise this exception if one of the checks in main fails. """
14
+ """Raise this exception if one of the checks in main fails."""
15
15
16
16
def __init__ (self , msg , status_type = None ):
17
17
super ().__init__ ()
Original file line number Diff line number Diff line change 16
16
17
17
18
18
class CheckFailed (Exception ):
19
- """ Raise this exception if one of the checks in main fails. """
19
+ """Raise this exception if one of the checks in main fails."""
20
20
21
21
def __init__ (self , msg , status_type = None ):
22
22
super ().__init__ ()
You can’t perform that action at this time.
0 commit comments