File tree Expand file tree Collapse file tree
pgadmin/misc/file_manager Expand file tree Collapse file tree Original file line number Diff line number Diff line change 171171 "test:js-coverage" : " yarn run test:js-once --collect-coverage" ,
172172 "test:feature" : " yarn run bundle && python regression/runtests.py --pkg feature_tests" ,
173173 "test" : " yarn run test:js-once && yarn run bundle && python regression/runtests.py" ,
174- "pep8" : " pycodestyle --config=../.pycodestyle ../docs && pycodestyle --config= ../.pycodestyle ../ pkg && pycodestyle --config= ../.pycodestyle ../ tools && pycodestyle --config=../.pycodestyle ../web" ,
174+ "pep8" : " pycodestyle --config=../.pycodestyle ../docs ../pkg ../tools ../web" ,
175175 "auditjs-html" : " yarn audit --json | yarn run yarn-audit-html --output ../auditjs.html" ,
176176 "auditjs" : " yarn audit --groups dependencies" ,
177177 "auditpy" : " safety check --full-report -i 51668 -i 52495" ,
Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ def read_file_generator(file, enc):
128128 # errors will never occur regardless of the configured error and
129129 # handles most of the Windows encodings
130130 # handler.
131- # Ref: https://goo.gl/vDhggS
131+ # Ref: https://tinyurl.com/yvj4u7fw
132132 with codecs .open (file , 'r' , encoding = 'latin-1' ) as fileObj :
133133 while True :
134134 # 4MB chunk (4 * 1024 * 1024 Bytes)
@@ -740,7 +740,7 @@ def suspend_windows_warning():
740740 """
741741 Prevents 'there is no disk in drive' waning on windows
742742 """
743- # StackOverflow Ref: https://goo.gl/9gYdef
743+ # StackOverflow Ref: https://stackoverflow.com/q/29059399/164233
744744 if _platform == "win32" :
745745 kernel32 .SetThreadErrorMode (SEM_FAIL , ctypes .byref (oldmode ))
746746
You can’t perform that action at this time.
0 commit comments