File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -520,7 +520,7 @@ def mocked_file_write(*args):
520
520
for expr in expressions [:i + 1 ]:
521
521
expected_file_log .append ((f"{ str (expr )} \n " , ))
522
522
523
- with patch (' builtins.open' , mocked_open ):
523
+ with patch (" builtins.open" , mocked_open ):
524
524
Watches .add (we_a )
525
525
Watches .add (we_b )
526
526
Watches .add (we_c )
Original file line number Diff line number Diff line change @@ -846,10 +846,10 @@ def save(cls):
846
846
return
847
847
848
848
try :
849
- with open (get_watches_file_name (), 'w+' ) as histfile :
849
+ with open (get_watches_file_name (), "w+" ) as histfile :
850
850
for watch in cls .all ():
851
851
if watch :
852
- histfile .write (watch .expression + ' \n ' )
852
+ histfile .write (watch .expression + " \n " )
853
853
854
854
except Exception as save_exc :
855
855
settings_log .exception ("Failed to save watches" , save_exc )
@@ -864,7 +864,7 @@ def load(cls):
864
864
watch_fn = get_watches_file_name ()
865
865
if os .path .exists (watch_fn ):
866
866
try :
867
- with open (watch_fn , 'r' ) as histfile :
867
+ with open (watch_fn , "r" ) as histfile :
868
868
cls ._expressions = set ()
869
869
for line in histfile .readlines ():
870
870
cls ._expressions .add (WatchExpression (line .strip ()))
You can’t perform that action at this time.
0 commit comments