Skip to content

Commit 24c971f

Browse files
authored
Fix formatting issues in setup_gui.py and setup_mcmc.py; add missing newlines at end of files (#185)
1 parent 07decee commit 24c971f

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

threedgrut/gui/setup_gui.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ def setup_gui():
4141
extra_cflags=cflags,
4242
extra_cuda_cflags=cuda_cflags,
4343
extra_include_paths=include_paths,
44-
)
44+
)

threedgrut/strategy/mcmc.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,11 @@ def load_mcmc_plugin():
3939
if _mcmc_plugin is None:
4040
try:
4141
from . import lib_mcmc_cc as gaussian_mcmc
42+
4243
_mcmc_plugin = gaussian_mcmc # type: ignore
4344
except ImportError:
4445
from threedgrut.strategy.src.setup_mcmc import setup_mcmc
46+
4547
_mcmc_plugin = setup_mcmc()
4648

4749

threedgrut/strategy/src/setup_mcmc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@ def setup_mcmc():
5656
extra_cuda_cflags=cuda_cflags,
5757
extra_include_paths=include_paths,
5858
build_directory=build_dir,
59-
)
59+
)

0 commit comments

Comments
 (0)