mirror of
https://gitlab.com/scemama/irpf90.git
synced 2024-12-22 04:13:33 +01:00
Fixed types in modules
This commit is contained in:
parent
3ba8730747
commit
d4e16bfaa8
@ -176,7 +176,7 @@ class Fmodule(object):
|
|||||||
result = modify_functions(result)
|
result = modify_functions(result)
|
||||||
use,dec,result = extract_use_dec_text(result)
|
use,dec,result = extract_use_dec_text(result)
|
||||||
self._use = make_single(map(lambda x: " "+x[1].text, use))
|
self._use = make_single(map(lambda x: " "+x[1].text, use))
|
||||||
self._dec = make_single(map(lambda x: " "+x[1].text, dec))
|
self._dec = map(lambda x: " "+x[1].text, dec)
|
||||||
result = provide_variables(result)
|
result = provide_variables(result)
|
||||||
result = move_to_top(result,Declaration)
|
result = move_to_top(result,Declaration)
|
||||||
result = move_to_top(result,Implicit)
|
result = move_to_top(result,Implicit)
|
||||||
|
Loading…
Reference in New Issue
Block a user