Skip to content

Commit db7b9d4

Browse files
committed
🎨 Run through black + isort
Command: make black isort
1 parent 8e98400 commit db7b9d4

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

doc/_ext/aafig.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from docutils import nodes
2121
from docutils.parsers.rst.directives import flag, images, nonnegative_int
2222
from sphinx.errors import SphinxError
23-
from sphinx.util import ensuredir, relative_uri, logging
23+
from sphinx.util import ensuredir, logging, relative_uri
2424

2525
try:
2626
from hashlib import sha1 as sha

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@
126126
# aafig format, try to get working with pdf
127127
aafig_format = dict(latex='pdf', html='gif')
128128

129-
aafig_default_options = dict(scale=.75, aspect=0.5, proportional=True)
129+
aafig_default_options = dict(scale=0.75, aspect=0.5, proportional=True)
130130

131131

132132
def linkcode_resolve(domain, info): # NOQA: C901

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def session(server):
5555
except exc.LibTmuxException:
5656
# server.attach_session(session.get('session_id'))
5757
pass
58-
58+
5959
for old_test_session in old_test_sessions:
6060
logger.debug('Old test test session %s found. Killing it.' % old_test_session)
6161
server.kill_session(old_test_session)

tests/test_workspacefreezer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def test_freeze_config(session):
2222
builder.build(session=session)
2323
assert session == builder.session
2424

25-
time.sleep(.50)
25+
time.sleep(0.50)
2626

2727
session = session
2828
sconf = freeze(session)

0 commit comments

Comments
 (0)