Commit 3b3e3f88c2f48514e6d57e8e20f2543deac7c228

Authored by Thiago Franco de Moraes
1 parent c8f7e562
Exists in master

Removed python2 shebangs

app.py
1   -#!/usr/bin/python
  1 +#!/usr/bin/env python3
2 2 #--------------------------------------------------------------------------
3 3 # Software: InVesalius - Software de Reconstrucao 3D de Imagens Medicas
4 4 # Copyright: (C) 2001 Centro de Pesquisas Renato Archer
... ...
invesalius/data/measures.py
1   -#!/usr/bin/env python
2 1 # -*- coding: UTF-8 -*-
3 2  
4 3 from six import with_metaclass
... ...
invesalius/data/viewer_slice.py
1   -#!/usr/bin/env python
2 1 # -*- coding: utf-8 -*-
3 2 #--------------------------------------------------------------------------
4 3 # Software: InVesalius - Software de Reconstrucao 3D de Imagens Medicas
... ...
invesalius/data/viewer_volume.py
1   -#!/usr/bin/env python
2 1 # -*- coding: utf-8 -*-
3 2  
4 3 #--------------------------------------------------------------------------
... ...
invesalius/gui/data_notebook.py
1   -#!/usr/bin/env python
2 1 # -*- coding: UTF-8 -*-
3 2 #--------------------------------------------------------------------------
4 3 # Software: InVesalius - Software de Reconstrucao 3D de Imagens Medicas
... ...
invesalius/gui/dialogs.py
1   -#!/usr/bin/env python
2 1 # -*- coding: UTF-8 -*-
3 2 #--------------------------------------------------------------------------
4 3 # Software: InVesalius - Software de Reconstrucao 3D de Imagens Medicas
... ...
invesalius/gui/dicom_preview_panel.py
... ... @@ -17,7 +17,6 @@
17 17 # detalhes.
18 18 #--------------------------------------------------------------------------
19 19  
20   -#!/usr/bin/env python
21 20 # -*- coding: UTF-8 -*-
22 21  
23 22 #TODO: To create a beautiful API
... ...
invesalius/gui/widgets/gradient.py
1   -#!/usr/bin/env python
2 1 # -*- coding: UTF-8 -*-
3 2  
4 3 #--------------------------------------------------------------------------
... ...
invesalius/gui/widgets/slice_menu.py
1   -#!/usr/bin/env python
2 1 # -*- coding: UTF-8 -*-
3 2  
4 3 #--------------------------------------------------------------------------
... ...
invesalius/i18n.py
1   -#!/usr/bin/env python
2 1 # -*- coding: UTF-8 -*-
3 2  
4 3 #--------------------------------------------------------------------------
... ...
invesalius/math_utils.py
1   -#!/usr/bin/env python
2 1 # -*- coding: utf-8 -*-
3 2  
4 3 import math
... ...