File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1515
1616"""Compile stage. Run after cursor change to ensure quality."""
1717
18- import subprocess
19-
2018import os
19+ import subprocess
2120
2221os .environ ["FAST_TESTS" ] = "TRUE"
2322
4443
4544# Everything is good. Cleanup. This should never fail...
4645print ("Formatting code and documentation..." )
47- subprocess .run (r"black *.py pyimgur tests" , shell = True , check = True )
46+ subprocess .run (r"black *.py examples pyimgur tests" , shell = True , check = True )
4847subprocess .run (r"prettier --write README.md" , shell = True , check = True )
Original file line number Diff line number Diff line change @@ -44,6 +44,9 @@ def get_refresh_token():
4444 print ("client_secret in it." )
4545
4646 else :
47- from authentication import client_id , client_secret
47+ from authentication import ( # pylint: disable=import-error
48+ client_id ,
49+ client_secret ,
50+ )
4851
4952 get_refresh_token ()
You can’t perform that action at this time.
0 commit comments