Skip to content

Commit 2ee8e37

Browse files
committed
Fix unnecessary elif
1 parent 79b125c commit 2ee8e37

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

alog/alogger.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def __init__(self, root_name, *args, **kwargs):
2424
def _alog_fn(self, fn):
2525
if 'ipython-input-' in fn: # pragma: no cover
2626
return "<IPython"
27-
elif fn == '<stdin>': # pragma: no cover
27+
if fn == '<stdin>': # pragma: no cover
2828
return '<stdin'
2929

3030
paths = []

0 commit comments

Comments
 (0)